38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<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>spring-batch-archetypes</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Samples Archetypes Parent</name>
|
|
<description>
|
|
<![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
|
|
archetypes are deployed as regular Maven projects (not archetypes), because of limitations
|
|
in the archetype plugin. For most effective use, copy one into Eclipse and use Q4E to manage
|
|
the dependencies.
|
|
]]>
|
|
</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>
|