[maven-release-plugin] prepare release spring-batch-1.0.0.rc1

This commit is contained in:
nebhale
2008-03-17 10:47:25 +00:00
parent b325e6e377
commit 4d5bce367e
6 changed files with 48 additions and 102 deletions

View File

@@ -9,7 +9,7 @@
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch</artifactId>
<version>1.0.0.rc1-SNAPSHOT</version>
<version>1.0.0.rc1</version>
<relativePath>..</relativePath>
</parent>

View File

@@ -9,7 +9,7 @@
<![CDATA[Spring Batch provides tools for enterprise batch or bulk processing. It can be used to wire up jobs, and track their execution, or simply as an optimization for repetitive processing in a transactional environment. Spring Batch is part of the Spring Portfolio.]]>
</description>
<version>1.0.0.rc1-SNAPSHOT</version>
<version>1.0.0.rc1</version>
<packaging>pom</packaging>
<modules>
@@ -26,9 +26,9 @@
<url>http://www.springsource.com</url>
</organization>
<scm>
<url>http://fisheye3.cenqua.com/browse/springframework/spring-batch/trunk</url>
<connection>scm:svn:http://springframework.svn.sourceforge.net/svnroot/springframework/spring-batch/trunk</connection>
<developerConnection>scm:svn:https://springframework.svn.sourceforge.net/svnroot/springframework/spring-batch/trunk</developerConnection>
<url>http://fisheye3.cenqua.com/browse/springframework/spring-batch/tags/spring-batch-1.0.0.rc1</url>
<connection>scm:svn:http://springframework.svn.sourceforge.net/svnroot/springframework/spring-batch/tags/spring-batch-1.0.0.rc1</connection>
<developerConnection>scm:svn:https://springframework.svn.sourceforge.net/svnroot/springframework/spring-batch/tags/spring-batch-1.0.0.rc1</developerConnection>
</scm>
<issueManagement>
<system>JIRA</system>

View File

@@ -12,7 +12,7 @@
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch</artifactId>
<version>1.0.0.rc1-SNAPSHOT</version>
<version>1.0.0.rc1</version>
<relativePath>..</relativePath>
</parent>

View File

@@ -12,7 +12,7 @@
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch</artifactId>
<version>1.0.0.rc1-SNAPSHOT</version>
<version>1.0.0.rc1</version>
<relativePath>..</relativePath>
</parent>

View File

@@ -10,7 +10,7 @@
<parent>
<groupId>org.springframework.batch</groupId>
<version>1.0.0.rc1-SNAPSHOT</version>
<version>1.0.0.rc1</version>
<artifactId>spring-batch</artifactId>
<relativePath>..</relativePath>
</parent>

View File

@@ -1,6 +1,4 @@
<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">
<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-samples</artifactId>
<packaging>jar</packaging>
@@ -13,7 +11,7 @@
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch</artifactId>
<version>1.0.0.rc1-SNAPSHOT</version>
<version>1.0.0.rc1</version>
<relativePath>..</relativePath>
</parent>
@@ -246,143 +244,91 @@
<phase>generate-sources</phase>
<configuration>
<tasks>
<typedef
resource="foundrylogic/vpp/typedef.properties" />
<taskdef
resource="foundrylogic/vpp/taskdef.properties" />
<typedef resource="foundrylogic/vpp/typedef.properties" />
<taskdef resource="foundrylogic/vpp/taskdef.properties" />
<!-- Reference script for HSQLDB - N.B. not under source control, but packagaed in jar. -->
<vppcopy
todir="${basedir}/target/generated-resources"
overwrite="true">
<vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context>
<property key="includes"
value="src/main/sql" />
<property
file="${basedir}/src/main/sql/hsqldb.properties" />
<property key="includes" value="src/main/sql" />
<property file="${basedir}/src/main/sql/hsqldb.properties" />
</context>
<engine>
<property
key="velocimacro.library" value="src/main/sql/hsqldb.vpp" />
<property key="velocimacro.library" value="src/main/sql/hsqldb.vpp" />
</engine>
</config>
<fileset
dir="${basedir}/src/main/sql"
includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp"
to="*-hsqldb.sql" />
<fileset dir="${basedir}/src/main/sql" includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp" to="*-hsqldb.sql" />
</vppcopy>
<!-- Reference script for DB2 - N.B. not under source control, but packagaed in jar. -->
<vppcopy
todir="${basedir}/target/generated-resources"
overwrite="true">
<vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context>
<property key="includes"
value="src/main/sql" />
<property
file="${basedir}/src/main/sql/db2.properties" />
<property key="includes" value="src/main/sql" />
<property file="${basedir}/src/main/sql/db2.properties" />
</context>
<engine>
<property
key="velocimacro.library" value="src/main/sql/db2.vpp" />
<property key="velocimacro.library" value="src/main/sql/db2.vpp" />
</engine>
</config>
<fileset
dir="${basedir}/src/main/sql"
includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp"
to="*-db2.sql" />
<fileset dir="${basedir}/src/main/sql" includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp" to="*-db2.sql" />
</vppcopy>
<!-- Reference script for Derby - N.B. not under source control, but packagaed in jar. -->
<vppcopy
todir="${basedir}/target/generated-resources"
overwrite="true">
<vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context>
<property key="includes"
value="src/main/sql" />
<property
file="${basedir}/src/main/sql/derby.properties" />
<property key="includes" value="src/main/sql" />
<property file="${basedir}/src/main/sql/derby.properties" />
</context>
<engine>
<property
key="velocimacro.library" value="src/main/sql/derby.vpp" />
<property key="velocimacro.library" value="src/main/sql/derby.vpp" />
</engine>
</config>
<fileset
dir="${basedir}/src/main/sql"
includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp"
to="*-derby.sql" />
<fileset dir="${basedir}/src/main/sql" includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp" to="*-derby.sql" />
</vppcopy>
<!-- Reference script for Oracle - N.B. not under source control, but packagaed in jar. -->
<vppcopy
todir="${basedir}/target/generated-resources"
overwrite="true">
<vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context>
<property key="includes"
value="src/main/sql" />
<property
file="${basedir}/src/main/sql/oracle10g.properties" />
<property key="includes" value="src/main/sql" />
<property file="${basedir}/src/main/sql/oracle10g.properties" />
</context>
<engine>
<property
key="velocimacro.library"
value="src/main/sql/oracle10g.vpp" />
<property key="velocimacro.library" value="src/main/sql/oracle10g.vpp" />
</engine>
</config>
<fileset
dir="${basedir}/src/main/sql"
includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp"
to="*-oracle10g.sql" />
<fileset dir="${basedir}/src/main/sql" includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp" to="*-oracle10g.sql" />
</vppcopy>
<!-- Reference script for PostgreSQL - N.B. not under source control, but packagaed in jar. -->
<vppcopy
todir="${basedir}/target/generated-resources"
overwrite="true">
<vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context>
<property key="includes"
value="src/main/sql" />
<property
file="${basedir}/src/main/sql/postgresql.properties" />
<property key="includes" value="src/main/sql" />
<property file="${basedir}/src/main/sql/postgresql.properties" />
</context>
<engine>
<property
key="velocimacro.library"
value="src/main/sql/postgresql.vpp" />
<property key="velocimacro.library" value="src/main/sql/postgresql.vpp" />
</engine>
</config>
<fileset
dir="${basedir}/src/main/sql"
includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp"
to="*-postgresql.sql" />
<fileset dir="${basedir}/src/main/sql" includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp" to="*-postgresql.sql" />
</vppcopy>
<!-- Reference script for MySQL - N.B. not under source control, but packaged in jar. -->
<vppcopy
todir="${basedir}/target/generated-resources"
overwrite="true">
<vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context>
<property key="includes"
value="src/main/sql" />
<property
file="${basedir}/src/main/sql/mysql.properties" />
<property key="includes" value="src/main/sql" />
<property file="${basedir}/src/main/sql/mysql.properties" />
</context>
<engine>
<property
key="velocimacro.library" value="src/main/sql/mysql.vpp" />
<property key="velocimacro.library" value="src/main/sql/mysql.vpp" />
</engine>
</config>
<fileset
dir="${basedir}/src/main/sql"
includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp"
to="*-mysql.sql" />
<fileset dir="${basedir}/src/main/sql" includes="business-schema.sql.vpp" />
<mapper type="glob" from="*.sql.vpp" to="*-mysql.sql" />
</vppcopy>
</tasks>
</configuration>