Remove dependence on parent project in archetypes

This commit is contained in:
dsyer
2008-06-25 13:07:31 +00:00
parent 786de6f5a8
commit 132f32b426
2 changed files with 26 additions and 23 deletions

View File

@@ -2,11 +2,13 @@
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.batch</groupId>
<artifactId>spring-batch-archetypes</artifactId>
<version>1.1.0.DEV-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Archetypes</name>
<description>
<![CDATA[
<![CDATA[
Spring Batch archetypes are simple project templates containing just enough code
to get you started running a job. For more detailed examples of using particular
features of the framework, look at the Spring Batch Samples project. Currently the
@@ -16,22 +18,8 @@
]]>
</description>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch</artifactId>
<version>1.1.0.DEV-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<modules>
<module>simple-cli</module>
</modules>
<pluginRepositories>
<pluginRepository>
<id>Codehaus</id>
<url>http://repository.codehaus.org/</url>
</pluginRepository>
</pluginRepositories>
</project>

View File

@@ -2,18 +2,12 @@
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.batch</groupId>
<artifactId>simple-cli-archetype</artifactId>
<version>1.1.0.DEV-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Spring Batch Simple Commandline Archetype</name>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-archetypes</artifactId>
<version>1.1.0.DEV-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<description>
<![CDATA[
This project is a minimal command line batch sample from
@@ -22,6 +16,20 @@
]]>
</description>
<properties>
<maven.test.failure.ignore>true</maven.test.failure.ignore>
<spring.framework.version>2.5.5</spring.framework.version>
</properties>
<profiles>
<profile>
<id>strict</id>
<properties>
<maven.test.failure.ignore>false</maven.test.failure.ignore>
</properties>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
@@ -105,4 +113,11 @@
</plugins>
</build>
<pluginRepositories>
<pluginRepository>
<id>Codehaus</id>
<url>http://repository.codehaus.org/</url>
</pluginRepository>
</pluginRepositories>
</project>