From: <sta...@us...> - 2007-04-02 23:34:18
|
Revision: 1681 http://archive-access.svn.sourceforge.net/archive-access/?rev=1681&view=rev Author: stack-sf Date: 2007-04-02 16:34:11 -0700 (Mon, 02 Apr 2007) Log Message: ----------- M wayback/pom.xml M wayback/wayback-core/pom.xml Move dependencies out of parent and down into the module that actual leans on them. Also changed locations for src so points at new location under wayback-core. Modified Paths: -------------- trunk/archive-access/projects/wayback/pom.xml trunk/archive-access/projects/wayback/wayback-core/pom.xml Modified: trunk/archive-access/projects/wayback/pom.xml =================================================================== --- trunk/archive-access/projects/wayback/pom.xml 2007-04-02 23:24:30 UTC (rev 1680) +++ trunk/archive-access/projects/wayback/pom.xml 2007-04-02 23:34:11 UTC (rev 1681) @@ -99,72 +99,6 @@ --> </dependency> - <dependency> - <groupId>org.mozilla</groupId> - <artifactId>juniversalchardet</artifactId> - <version>1.0</version> - </dependency> - <dependency> - <groupId>com.sleepycat</groupId> - <artifactId>je</artifactId> - <version>3.2.13</version> - </dependency> - <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.0.4</version> - </dependency> - <dependency> - <groupId>commons-httpclient</groupId> - <artifactId>commons-httpclient</artifactId> - <version>3.0.1</version> - </dependency> - <dependency> - <groupId>commons-cli</groupId> - <artifactId>commons-cli</artifactId> - <version>1.0-beta-2</version> - </dependency> - <dependency> - <groupId>org.gnu</groupId> - <artifactId>libidn</artifactId> - <version>0.5.9</version> - </dependency> - <dependency> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - <version>1.3</version> - </dependency> - <dependency> - <groupId>commons-pool</groupId> - <artifactId>commons-pool</artifactId> - <version>1.3</version> - </dependency> - <dependency> - <groupId>commons-collections</groupId> - <artifactId>commons-collections</artifactId> - <version>3.1</version> - </dependency> - <dependency> - <groupId>it.unimi.dsi</groupId> - <artifactId>mg4j</artifactId> - <version>1.0.1</version> - </dependency> - <dependency> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - <version>2.4</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>org.archive</groupId> - <artifactId>archive-commons</artifactId> -<!--SNAPSHOT means use latest. When archive-commons is deployed to the local repository, use: -$ JAVA_HOME=/usr/lib/j2sdk1.5-sun/ bash /0/builds/bin/maven-2.0.5/bin/mvn deploy:deploy-file \ - -Dfile=/tmp/archive-commons-1.11.0-SNAPSHOT.jar -Durl=file:/0/maven2-repository/ \ - -DgroupId=org.archive -DartifactId=archive-commons -Dpackaging=jar -Dversion=1.11.0-SNAPSHOT - --> - <version>1.12.0</version> - </dependency> </dependencies> <dependencyManagement> @@ -224,7 +158,7 @@ <artifactId>maven-javadoc-plugin</artifactId> <configuration> <javadocDirectory> - ${basedir}/src/java + wayback-core/src/main/java </javadocDirectory> </configuration> </plugin> Modified: trunk/archive-access/projects/wayback/wayback-core/pom.xml =================================================================== --- trunk/archive-access/projects/wayback/wayback-core/pom.xml 2007-04-02 23:24:30 UTC (rev 1680) +++ trunk/archive-access/projects/wayback/wayback-core/pom.xml 2007-04-02 23:34:11 UTC (rev 1681) @@ -24,7 +24,6 @@ <name>Wayback Core Classes</name> <packaging>jar</packaging> <build> - <sourceDirectory>../src/java</sourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -50,14 +49,72 @@ <dependencies> <dependency> <groupId>org.archive</groupId> - <artifactId>archive-mapred</artifactId> - <version>0.2.0-SNAPSHOT</version> + <artifactId>archive-commons</artifactId> +<!--SNAPSHOT means use latest. When archive-commons is deployed to the local repository, use: +$ JAVA_HOME=/usr/lib/j2sdk1.5-sun/ bash /0/builds/bin/maven-2.0.5/bin/mvn deploy:deploy-file \ + -Dfile=/tmp/archive-commons-1.11.0-SNAPSHOT.jar -Durl=file:/0/maven2-repository/ \ + -DgroupId=org.archive -DartifactId=archive-commons -Dpackaging=jar -Dversion=1.11.0-SNAPSHOT + --> + <version>1.12.0</version> </dependency> <dependency> - <groupId>org.apache</groupId> - <artifactId>hadoop</artifactId> - <version>0.12.2-core</version> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.4</version> <scope>compile</scope> </dependency> + <dependency> + <groupId>org.mozilla</groupId> + <artifactId>juniversalchardet</artifactId> + <version>1.0</version> + </dependency> + + <dependency> + <groupId>com.sleepycat</groupId> + <artifactId>je</artifactId> + <version>3.2.13</version> + </dependency> + + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <version>1.0.4</version> + </dependency> + <dependency> + <groupId>commons-httpclient</groupId> + <artifactId>commons-httpclient</artifactId> + <version>3.0.1</version> + </dependency> + <dependency> + <groupId>commons-cli</groupId> + <artifactId>commons-cli</artifactId> + <version>1.0-beta-2</version> + </dependency> + <dependency> + <groupId>org.gnu</groupId> + <artifactId>libidn</artifactId> + <version>0.5.9</version> + </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.3</version> + </dependency> + <dependency> + <groupId>commons-pool</groupId> + <artifactId>commons-pool</artifactId> + <version>1.3</version> + </dependency> + <dependency> + <groupId>commons-collections</groupId> + <artifactId>commons-collections</artifactId> + <version>3.1</version> + </dependency> + <dependency> + <groupId>it.unimi.dsi</groupId> + <artifactId>mg4j</artifactId> + <version>1.0.1</version> + </dependency> + </dependencies> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |