BATCH-818: add build-central subdir (not Eclipse project)

This commit is contained in:
dsyer
2009-01-13 19:12:27 +00:00
parent 3d8fd02b09
commit 79d9d996e1
2 changed files with 51 additions and 0 deletions

46
build-central/pom.xml Normal file
View File

@@ -0,0 +1,46 @@
<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>
<artifactId>org.springframework.batch.build.central</artifactId>
<name>Distribution</name>
<packaging>pom</packaging>
<description>
Spring Batch Maven Central Build - used to build Maven artifacts for the central repository
</description>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>org.springframework.batch</artifactId>
<version>2.0.0.CI-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<profiles>
<profile>
<id>install</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.springsource.build</groupId>
<artifactId>com.springsource.build.converter</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<id>create-build</id>
<phase>initialize</phase>
<goals>
<goal>create-build</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

View File

@@ -529,6 +529,11 @@
<groupId>org.objectweb.asm</groupId>
<artifactId>com.springsource.org.objectweb.asm.attrs</artifactId>
</exclusion>
<exclusion>
<!-- This one isn't in BRITS but is needed by Maven Central -->
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>