From: <bra...@us...> - 2007-08-23 22:35:59
|
Revision: 1928 http://archive-access.svn.sourceforge.net/archive-access/?rev=1928&view=rev Author: bradtofel Date: 2007-08-23 15:36:01 -0700 (Thu, 23 Aug 2007) Log Message: ----------- BUILD: now using latest org.archive.heritrix:commons jar, which is maven2, thus includes it's own dependencies. which is really, really good. Also added dependency on spring jars. Modified Paths: -------------- trunk/archive-access/projects/wayback/wayback-core/pom.xml Modified: trunk/archive-access/projects/wayback/wayback-core/pom.xml =================================================================== --- trunk/archive-access/projects/wayback/wayback-core/pom.xml 2007-08-23 21:35:08 UTC (rev 1927) +++ trunk/archive-access/projects/wayback/wayback-core/pom.xml 2007-08-23 22:36:01 UTC (rev 1928) @@ -47,89 +47,32 @@ </plugins> </build> <dependencies> + <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> - <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> - <scope>compile</scope> + <scope>provided</scope> </dependency> <dependency> + <groupId>org.archive.heritrix</groupId> + <artifactId>commons</artifactId> + <version>2.0.0-SNAPSHOT</version> + </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> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>2.0.5</version> </dependency> - <dependency> - <groupId>commons-logging</groupId> - <artifactId>commons-logging</artifactId> - <version>1.0.4</version> + <groupId>org.springframework</groupId> + <artifactId>spring-beans</artifactId> + <version>2.0.5</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>it.unimi.dsi</groupId> - <artifactId>fastutil</artifactId> - <version>5.0.3</version> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-core</artifactId> - <version>2.0.5</version> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-beans</artifactId> - <version>2.0.5</version> - </dependency> - </dependencies> </project> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |