Skip to content

Commit

Permalink
Update primary version of SCT to 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cppwfs committed Aug 5, 2024
1 parent 612710e commit 7b674a8
Show file tree
Hide file tree
Showing 22 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-parent</artifactId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>
<packaging>jar</packaging>
<name>Spring Cloud Task Docs</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-parent</artifactId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring Cloud Task Build</name>
<description>Spring Cloud Task Build</description>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-starter-single-step-batch-job/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>spring-cloud-task-parent</artifactId>
<groupId>org.springframework.cloud</groupId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-starter-task/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-parent</artifactId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>spring-cloud-starter-task</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-batch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-parent</artifactId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>spring-cloud-task-batch</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-parent</artifactId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<artifactId>spring-cloud-task-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-cloud-task-dependencies</artifactId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring Cloud Task Dependencies</name>
<description>Spring Cloud Task Dependencies</description>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>spring-cloud-task-parent</artifactId>
<groupId>org.springframework.cloud</groupId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>Spring Cloud Task Integration Tests</name>
Expand Down
4 changes: 2 additions & 2 deletions spring-cloud-task-samples/batch-events/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.spring.cloud</groupId>
<artifactId>batch-events</artifactId>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Batch Events Sample Application</name>
Expand All @@ -21,7 +21,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<spring-cloud-stream.version>4.1.4-SNAPSHOT</spring-cloud-stream.version>
<spring-cloud-task.version>3.1.3-SNAPSHOT</spring-cloud-task.version>
<spring-cloud-task.version>3.2.0-SNAPSHOT</spring-cloud-task.version>
</properties>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-samples/batch-job/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.spring.cloud</groupId>
<artifactId>batch-job</artifactId>
<packaging>jar</packaging>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<description>Spring Cloud Task Batch Example</description>

<name>Batch Job Sample Application</name>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-samples/jpa-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.spring.cloud</groupId>
<artifactId>jpa-sample</artifactId>
<packaging>jar</packaging>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<description>To show users how to enable a task with a JPA application.</description>

<name>Spring Cloud Task JPA Sample Application</name>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-samples/multiple-datasources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.spring.cloud</groupId>
<artifactId>multiple-datasources</artifactId>
<packaging>jar</packaging>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<description>To show users how to enable a task with a multiple DataSources.
</description>

Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-samples/partitioned-batch-job/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>partitioned-batch-job</artifactId>
<packaging>jar</packaging>
<name>Partitioned Batch Job</name>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<description>Sample of using the DeployerPartitionHandler</description>

<parent>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-parent</artifactId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>

<properties>
Expand Down
20 changes: 10 additions & 10 deletions spring-cloud-task-samples/single-step-batch-job/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ mvn clean package

[source,shell]
----
java -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar --spring.config.name=<property file containing batch, reader, and writer properties>
java -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar --spring.config.name=<property file containing batch, reader, and writer properties>
----

== Examples

=== FlatFileItemReader with a FlatFileItemWriter batch job
In this example the batch job will read from the test.txt file from the resources directory and write a `result.txt` file to the root directory of the project.
```
java -Dspring.profiles.active=ffreader,ffwriter -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar
java -Dspring.profiles.active=ffreader,ffwriter -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar
```

=== FlatFileItemReader with a JdbcItemWriter batch job
In this example the batch job will read from the test.txt file from the resources directory and write the result to the `item` table in your data store.
```
java -Dspring.profiles.active=ffreader,jdbcwriter -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar
java -Dspring.profiles.active=ffreader,jdbcwriter -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar
```

Before running create the following table:
Expand All @@ -60,7 +60,7 @@ CREATE TABLE IF NOT EXISTS item
=== JdbcCursorItemReader with a JdbcItemWriter batch job
In this example the batch job will read from the `item_sample` table in your data store (as specified in the default `DataSource` properties) and write the result to the `item` table in your data store (as specified in the default `DataSource` properties).
```
java -Dspring.profiles.active=jdbcreader,jdbcwriter -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar
java -Dspring.profiles.active=jdbcreader,jdbcwriter -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar
```

Before running create the following tables:
Expand Down Expand Up @@ -101,7 +101,7 @@ export spring_batch_job_jdbcbatchitemwriter_datasource_enable=true
=== JdbcCursorItemReader with FlatfileItemWriter batch job
In this example the batch job will read from the `item_sample` table in your data store and write the result to the `result.txt` file to the root directory of the project.
```
java -Dspring.profiles.active=jdbcreader,ffwriter -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar
java -Dspring.profiles.active=jdbcreader,ffwriter -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar
```

Before running create the following table:
Expand All @@ -122,23 +122,23 @@ INSERT INTO item_sample (item_name) VALUES ('Job');
=== FlatfileItemReader with AmqpItemWriter batch job
In this example the batch job will read from the `test.txt` file and write the result to the `sampleexchange` exchange.
```
java -Dspring.profiles.active=ffreader,amqpwriter -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar
java -Dspring.profiles.active=ffreader,amqpwriter -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar
```

NOTE: Before running create an exchange named `sampleexchange`.

=== AmqpItemReader with FlatfileItemWriter batch job
In this example the batch job will read from the `samplequeue` queue and write the result to the `result.txt` in the current directory.
```
java -Dspring.profiles.active=amqpreader,ffwriter -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar
java -Dspring.profiles.active=amqpreader,ffwriter -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar
```

NOTE: Before running create and populate a queue named `samplequeue`.

=== FlatfileItemReader with KafkaItemWriter batch job
In this example the batch job will read from the `test.txt` file and write the result to the `sampletopic` topic.
```
java -Dspring.profiles.active=ffreader,kafkawriter -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar
java -Dspring.profiles.active=ffreader,kafkawriter -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar
```

Before running create a topic named `sampletopic`. For example:
Expand All @@ -149,10 +149,10 @@ kafka-topics.sh --create --topic sampletopic --bootstrap-server localhost:9092
=== KafkaItemReader with FlatfileItemWriter batch job
In this example the batch job will read from the `sampletopic` topic and write the result to the `result.txt` in the current directory.
```
java -Dspring.profiles.active=kafkareader,ffwriter -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar
java -Dspring.profiles.active=kafkareader,ffwriter -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar
```

Before running populate the topic named `sampletopic`. For example populate it using the FlatfileItemReader and KafkaItemWriter from above:
```
java -Dspring.profiles.active=ffreader,kafkawriter -jar target/single-step-batch-job-3.1.0-SNAPSHOT.jar
java -Dspring.profiles.active=ffreader,kafkawriter -jar target/single-step-batch-job-3.2.0-SNAPSHOT.jar
```
4 changes: 2 additions & 2 deletions spring-cloud-task-samples/single-step-batch-job/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>single-step-batch-job</artifactId>
<packaging>jar</packaging>
<name>Single Step Batch Job Task</name>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<description>Spring Cloud Single Step Batch Job Task</description>

<parent>
Expand Down Expand Up @@ -78,7 +78,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-single-step-batch-job</artifactId>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-samples/task-events/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.spring.cloud</groupId>
<artifactId>task-events</artifactId>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Task Events</name>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-samples/task-observations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.spring</groupId>
<artifactId>task-observations</artifactId>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<name>task observation sample</name>
<description>Displays task observations as well as commandline and application runner observations</description>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-samples/taskprocessor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.spring.cloud</groupId>
<artifactId>taskprocessor</artifactId>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Task Processor Sample Application</name>
Expand Down
4 changes: 2 additions & 2 deletions spring-cloud-task-samples/tasksink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.spring.cloud</groupId>
<artifactId>tasksink</artifactId>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Task Sink Sample Application</name>
Expand All @@ -23,7 +23,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<skipInstall>true</skipInstall>
<spring-cloud-stream.version>4.1.4-SNAPSHOT</spring-cloud-stream.version>
<spring-cloud-task.version>3.1.3-SNAPSHOT</spring-cloud-task.version>
<spring-cloud-task.version>3.2.0-SNAPSHOT</spring-cloud-task.version>
<spring-cloud-deployer-version>2.9.0</spring-cloud-deployer-version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-samples/timestamp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>timestamp-task</artifactId>
<packaging>jar</packaging>
<name>Timestamp Task</name>
<version>3.1.2-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
<description>Spring Cloud Timestamp Task</description>

<parent>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-task-stream/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-task-parent</artifactId>
<version>3.1.3-SNAPSHOT</version>
<version>3.2.0-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
Expand Down

0 comments on commit 7b674a8

Please sign in to comment.