updated maven central poms, added parent pom.

Generated from ivy.xml -> pom.xml using makepom ant task.  (this is the pom for the S2 bundle repo)
The convert pom.xml using mvn org.springframework.build.repository:org.springframework.build.repository.maven:create-central (this is the pom for maven central repo)
This commit is contained in:
Mark Pollack
2009-03-21 02:09:26 +00:00
parent 72e57cab55
commit d206a84e68
29 changed files with 986 additions and 527 deletions

View File

@@ -3,6 +3,7 @@
<property file="${basedir}/../build.properties"/>
<import file="${basedir}/../build-spring-integration/package-bundle.xml"/>
<import file="${basedir}/../build-spring-integration/generate-pom.xml"/>
<import file="${basedir}/../spring-build/standard/default.xml"/>
</project>

View File

@@ -2,11 +2,15 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-core</artifactId>
<packaging>jar</packaging>
<name>Spring Integration Core</name>
<version>1.0.2.RELEASE</version>
<parent>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-parent</artifactId>
<version>1.0.2.RELEASE</version>
<relativePath>../build-spring-integration</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>cglib</groupId>
@@ -48,12 +52,11 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>com.springsource.org.mockito</artifactId>
<version>1.6.0</version>
<scope>test</scope>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<spring.version>2.5.6</spring.version>