Browse Source

pom maintenance - changes needed to run inside eclipse via m2eclipse

conversation
Mark Pollack 15 years ago
parent
commit
3081396c15
  1. 14
      org.springframework.jdbc/pom.xml
  2. 12
      org.springframework.orm/pom.xml
  3. 4
      org.springframework.oxm/pom.xml
  4. 13
      org.springframework.test/pom.xml

14
org.springframework.jdbc/pom.xml

@ -11,7 +11,6 @@ @@ -11,7 +11,6 @@
<relativePath>../org.springframework.spring-parent</relativePath>
<version>3.0.0.BUILD-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>c3p0</groupId>
@ -71,10 +70,13 @@ @@ -71,10 +70,13 @@
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.4.2.0</version>
<scope>compile</scope>
<optional>true</optional>
<artifactId>com.springsource.org.apache.derby</artifactId>
<version>10.5.1000001.764942</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>com.springsource.org.apache.derby.client</artifactId>
<version>10.5.1000001.764942</version>
</dependency>
<dependency>
<groupId>junit</groupId>
@ -99,7 +101,7 @@ @@ -99,7 +101,7 @@
<build>
<testResources>
<testResource>
<directory>${pom.build.sourceDirectory}</directory>
<directory>src/test/resources</directory>
<includes>
<include>**/*.sql</include>
<include>**/*.xml</include>

12
org.springframework.orm/pom.xml

@ -231,6 +231,18 @@ @@ -231,6 +231,18 @@
<include>**/*.xsd</include>
</includes>
</testResource>
<testResource>
<directory>src/test/resources</directory>
<includes>
<include>**/*.xml</include>
</includes>
</testResource>
<testResource>
<directory>src/test/resources</directory>
<includes>
<include>*.jar</include>
</includes>
</testResource>
</testResources>
</build>
</project>

4
org.springframework.oxm/pom.xml

@ -1,5 +1,7 @@ @@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>

13
org.springframework.test/pom.xml

@ -151,6 +151,19 @@ @@ -151,6 +151,19 @@
<version>1.8.0.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>3.3.1.GA</version>
<optional>true</optional>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-cglib-repack</artifactId>
<version>2.1_3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>

Loading…
Cancel
Save