From: <id...@us...> - 2009-03-24 18:21:45
|
Revision: 102 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=102&view=rev Author: idueppe Date: 2009-03-24 18:20:47 +0000 (Tue, 24 Mar 2009) Log Message: ----------- refactoring of pom.xml Modified Paths: -------------- trunk/sandbox/cse-ip/pom.xml trunk/sandbox/cse-ip/sc-cdmm/pom.xml trunk/sandbox/cse-ip/sc-idmapper/pom.xml Modified: trunk/sandbox/cse-ip/pom.xml =================================================================== --- trunk/sandbox/cse-ip/pom.xml 2009-03-24 15:02:05 UTC (rev 101) +++ trunk/sandbox/cse-ip/pom.xml 2009-03-24 18:20:47 UTC (rev 102) @@ -62,15 +62,36 @@ <module>cse-ip-application</module> </modules> + <repositories> <repository> + <id>download-java-net</id> + <name>Repository Java.Net</name> + <url>http://download.java.net/maven/2</url> + <layout>default</layout> + </repository> + <repository> <id>java-net</id> <name>Java.Net</name> <layout>legacy</layout> - <url>https://maven-repository.dev.java.net/nonav/repository</url> + <url>https://maven-repository.dev.java.net/repository</url> </repository> </repositories> + <pluginRepositories> + <pluginRepository> + <id>download-java-net</id> + <name>Repository Java.Net</name> + <url>http://download.java.net/maven/2</url> + <layout>default</layout> + </pluginRepository> + <pluginRepository> + <id>java-net</id> + <name>Java.Net</name> + <layout>legacy</layout> + <url>https://maven-repository.dev.java.net/repository</url> + </pluginRepository> + </pluginRepositories> <build> <defaultGoal>install</defaultGoal> <plugins> @@ -100,6 +121,9 @@ org.eclipse.wst.common.project.facet.core.nature </projectnature> </additionalProjectnatures> + <classpathContainers> + <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer> + </classpathContainers> </configuration> </plugin> <plugin> @@ -173,6 +197,11 @@ <dependencyManagement> <dependencies> <dependency> + <groupId>javax.persistence</groupId> + <artifactId>persistence-api</artifactId> + <version>1.0</version> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> @@ -204,6 +233,18 @@ <version>5.2.0</version> </dependency> <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>${slf4j.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <version>${slf4j.version}</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> @@ -211,12 +252,12 @@ <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> - <version>2.4</version> + <version>${commons-lang.version}</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> - <version>3.2.1</version> + <version>${commons-collections.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> @@ -228,6 +269,18 @@ <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> + <dependency> + <groupId>mysql</groupId> + <artifactId>mysql-connector-java</artifactId> + <version>${mysql.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>toplink.essentials</groupId> + <artifactId>toplink-essentials</artifactId> + <version>2.1-60f</version> + <scope>test</scope> + </dependency> </dependencies> </dependencyManagement> @@ -238,8 +291,10 @@ <spring.version>2.5.6</spring.version> <jaxb-impl.version>2.1.7</jaxb-impl.version> <mysql.version>5.1.6</mysql.version> + <commons-lang.version>2.4</commons-lang.version> + <commons-collections.version>3.2.1</commons-collections.version> <slf4j.version>1.5.6</slf4j.version> - <toplink.version>2.1-60f</toplink.version> + <!-- TEST Bibliotheken --> </properties> </project> \ No newline at end of file Modified: trunk/sandbox/cse-ip/sc-cdmm/pom.xml =================================================================== --- trunk/sandbox/cse-ip/sc-cdmm/pom.xml 2009-03-24 15:02:05 UTC (rev 101) +++ trunk/sandbox/cse-ip/sc-cdmm/pom.xml 2009-03-24 18:20:47 UTC (rev 102) @@ -11,7 +11,7 @@ <groupId>de.campussource.cse</groupId> <artifactId>sc-cdmm</artifactId> <packaging>ejb</packaging> - <name>Service Component Canonical Date Model Manager</name> + <name>Service Component Canonical Data Model Manager</name> <version>1.0-SNAPSHOT</version> <dependencies> @@ -30,8 +30,6 @@ <dependency> <groupId>javax.persistence</groupId> <artifactId>persistence-api</artifactId> - <version>1.0</version> - <scope>compile</scope> </dependency> <dependency> <groupId>commons-lang</groupId> @@ -44,7 +42,6 @@ <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> - <version>${mysql.version}</version> <scope>test</scope> </dependency> <dependency> @@ -55,13 +52,11 @@ <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> - <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> - <version>${slf4j.version}</version> <scope>test</scope> </dependency> <!-- <dependency> --> @@ -73,7 +68,6 @@ <dependency> <groupId>toplink.essentials</groupId> <artifactId>toplink-essentials</artifactId> - <version>${toplink.version}</version> <scope>test</scope> </dependency> <dependency> Modified: trunk/sandbox/cse-ip/sc-idmapper/pom.xml =================================================================== --- trunk/sandbox/cse-ip/sc-idmapper/pom.xml 2009-03-24 15:02:05 UTC (rev 101) +++ trunk/sandbox/cse-ip/sc-idmapper/pom.xml 2009-03-24 18:20:47 UTC (rev 102) @@ -44,7 +44,6 @@ <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> - <version>${mysql.version}</version> <scope>test</scope> </dependency> <dependency> @@ -64,16 +63,9 @@ <version>${slf4j.version}</version> <scope>test</scope> </dependency> -<!-- <dependency> --> -<!-- <groupId>org.hibernate</groupId> --> -<!-- <artifactId>hibernate-entitymanager</artifactId> --> -<!-- <version>3.4.0.GA</version> --> -<!-- <scope>test</scope>--> -<!-- </dependency> --> <dependency> <groupId>toplink.essentials</groupId> <artifactId>toplink-essentials</artifactId> - <version>${toplink.version}</version> <scope>test</scope> </dependency> <dependency> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |