-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add JExample to local mvn repository
mvn install:install-file \ -Dfile=/Users/…/Downloads/jexample-4.5-391.jar \ -DgroupId=ch.unibe \ -DartifactId=jexample \ -Dversion=4.5-391 \ -Dpackaging=jar \ -DlocalRepositoryPath=$(pwd)/local-repository
- Loading branch information
1 parent
0d3c6ad
commit 3928a46
Showing
5 changed files
with
167 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
local-repository/ch/unibe/jexample/4.5-391/_remote.repositories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice. | ||
#Sat Nov 09 14:06:18 CET 2024 | ||
jexample-4.5-391.jar>= | ||
jexample-4.5-391.pom>= |
Binary file not shown.
145 changes: 145 additions & 0 deletions
145
local-repository/ch/unibe/jexample/4.5-391/jexample-4.5-391.pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>net.sf.jexample</groupId> | ||
<artifactId>jexample</artifactId> | ||
<version>4.4-${env.SVNVERSION}-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.3</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<distributionManagement> | ||
<repository> | ||
<uniqueVersion>false</uniqueVersion> | ||
<id>ssh-haddock</id> | ||
<url>scpexe://haddock.unibe.ch/home/scg/download/jexample/maven</url> | ||
</repository> | ||
<snapshotRepository> | ||
<uniqueVersion>true</uniqueVersion> | ||
<id>ssh-jexample-snapshot</id> | ||
<url>scpexe://web.sourceforge.net/home/groups/j/je/jexample/htdocs/maven2-snapshot</url> | ||
</snapshotRepository> | ||
</distributionManagement> | ||
|
||
<build> | ||
<sourceDirectory>src/main</sourceDirectory> | ||
<testSourceDirectory>src/test</testSourceDirectory> | ||
<resources> | ||
<resource> | ||
<directory>${project.build.sourceDirectory}</directory> | ||
</resource> | ||
</resources> | ||
|
||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<source>${jdk.version}</source> | ||
<target>${jdk.version}</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<configuration> | ||
<includes> | ||
<include>**/AllTests.java</include> | ||
</includes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<archive> | ||
<index>true</index> | ||
<manifest> | ||
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> | ||
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> | ||
</manifest> | ||
</archive> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<properties> | ||
<jdk.version>1.5</jdk.version> | ||
</properties> | ||
|
||
<!-- meta information --> | ||
|
||
<name>JExample</name> | ||
<url>http://www.iam.unibe.ch/~scg/Research/JExample</url> | ||
<inceptionYear>2007</inceptionYear> | ||
<description> | ||
JExample is an extensions of JUnit that improves defect localizaton by | ||
changing the way you structure your tests. It introduces first-class | ||
dependencies. If test B depends on A, the return value of A can be used as | ||
B's fixture. And if A test fails, B and all other dependees of A are | ||
skipped and marked as white. We show in an empirical study that JExample | ||
improves performance and defect localization. | ||
</description> | ||
|
||
<licenses> | ||
<license> | ||
<name>Common Public License Version 1.0 (CPL)</name> | ||
<url>http://www.eclipse.org/legal/cpl-v10.html</url> | ||
<distribution>repo</distribution> | ||
<comments>The same license as JUnit.</comments> | ||
</license> | ||
</licenses> | ||
|
||
<organization> | ||
<name>Software Composition Group</name> | ||
<url>http://www.iam.unibe.ch/~scg/</url> | ||
</organization> | ||
|
||
<developers> | ||
<developer> | ||
<id>haense</id> | ||
<name>Lea Haensenberger</name> | ||
<email>lea.haensenberger@kpm.unibe.ch</email> | ||
<url>http://www.kpm.unibe.ch/index.php?bereich=institut&page=mitarbeiter&sub=3&id=1068</url> | ||
<organization>Kompetenzzentrum fuer Public Management der Universitaet Bern</organization> | ||
<organizationUrl>http://www.kpm.unibe.ch/</organizationUrl> | ||
<roles> | ||
<role>developer</role> | ||
</roles> | ||
<timezone>+1</timezone> | ||
</developer> | ||
<developer> | ||
<id>adriankuhn</id> | ||
<name>Adrian Kuhn</name> | ||
<email>akuhn@gmx.ch</email> | ||
<url>http://www.iam.unibe.ch/~akuhn/blog/</url> | ||
<organization>Software Composition Group</organization> | ||
<organizationUrl>http://www.iam.unibe.ch/~scg/</organizationUrl> | ||
<roles> | ||
<role>developer</role> | ||
</roles> | ||
<timezone>+1</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<issueManagement> | ||
<system>Sourceforge</system> | ||
<url>http://sourceforge.net/tracker/?group_id=221132&atid=1051552</url> | ||
</issueManagement> | ||
|
||
<scm> | ||
<connection>scm:svn:http://jexample.svn.sourceforge.net/svnroot/jexample/JExample/trunk/</connection> | ||
<developerConnection>scm:svn:https://jexample.svn.sourceforge.net/svnroot/jexample/JExample/trunk/</developerConnection> | ||
<url>http://jexample.svn.sourceforge.net/viewvc/jexample/</url> | ||
</scm> | ||
|
||
</project> | ||
|
12 changes: 12 additions & 0 deletions
12
local-repository/ch/unibe/jexample/maven-metadata-local.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata> | ||
<groupId>ch.unibe</groupId> | ||
<artifactId>jexample</artifactId> | ||
<versioning> | ||
<release>4.5-391</release> | ||
<versions> | ||
<version>4.5-391</version> | ||
</versions> | ||
<lastUpdated>20241109130617</lastUpdated> | ||
</versioning> | ||
</metadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters