From: Lukas T. <luk...@us...> - 2007-05-18 10:37:20
|
lukas_theussl 07/05/18 03:37:16 Modified: webtest project.xml project.properties Log: Get javax.activation and javax.mail from java.net. Revision Changes Path 1.31 +3 -3 maven-plugins/webtest/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.xml,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- project.xml 17 May 2007 20:22:41 -0000 1.30 +++ project.xml 18 May 2007 10:37:15 -0000 1.31 @@ -226,12 +226,12 @@ <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> - <version>1.0.2</version> + <version>1.1</version> </dependency> <dependency> <groupId>javax.mail</groupId> - <artifactId>javamail</artifactId> - <version>1.3.2</version> + <artifactId>mail</artifactId> + <version>1.4</version> </dependency> <dependency> <groupId>jaxen</groupId> 1.5 +3 -0 maven-plugins/webtest/project.properties Index: project.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/webtest/project.properties,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- project.properties 22 Aug 2003 08:31:34 -0000 1.4 +++ project.properties 18 May 2007 10:37:16 -0000 1.5 @@ -8,3 +8,6 @@ maven.ui.body.background=white maven.ui.body.foreground=black maven.ui.banner.background=white + +# get javax.activation and javax.mail from java.net (https://maven-repository.dev.java.net/) +maven.repo.remote=http://www.ibiblio.org/maven,http://maven-plugins.sourceforge.net/repository,http://maven-plugins.sourceforge.net/snapshot-repository,http://download.java.net/maven/1/ \ No newline at end of file |