Add S2AP meta-data to archetype

This commit is contained in:
dsyer
2008-07-18 09:12:20 +00:00
parent 5a37462d73
commit 7166a88a43
8 changed files with 121 additions and 4 deletions

View File

@@ -6,7 +6,8 @@
<artifactId>simple-cli-archetype</artifactId>
<version>2.0.0.CI-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Spring Batch Simple Commandline Archetype</name>
<name>Commandline</name>
<url>http://www.springframework.org/spring-batch/archetypes/simple-cli-archetype</url>
<description>
<![CDATA[
@@ -94,6 +95,32 @@
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<manifestLocation>target/generated-resources/META-INF</manifestLocation>
<instructions>
<Bundle-SymbolicName>${bundle.symbolic.name}</Bundle-SymbolicName>
<Export-Package>!example,!test.*</Export-Package>
<Import-Package><![CDATA[
org.apache.commons.logging.*;version="[1.1.0, 2.0.0)",
org.springframework.batch.*;version="[2.0.0,3.0.0)",
org.springframework.*;version="[2.5.5, 3.0.0)"
]]></Import-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>