Consolidate version numbers to 2.0.0(-SNAPSHOT)
Partially resolves #156
This commit is contained in:
@@ -13,13 +13,13 @@ cd http-ingest
|
||||
./mvnw clean package
|
||||
```
|
||||
|
||||
At this step, the artifact `http-ingest-1.0.0.BUILD-SNAPSHOT.jar` is available.
|
||||
At this step, the artifact `http-ingest-2.0.0-SNAPSHOT.jar` is available.
|
||||
|
||||
You can register this artifact as the Spring Cloud Data Flow `Source` application as follows,
|
||||
From the Spring Cloud Data Flow shell,
|
||||
|
||||
```
|
||||
dataflow:>app register --name http-ingest --type source --uri file://<Your local parent directory to the forked github repo>/spring-cloud-dataflow-samples/kafka-samples/http-ingest/target/http-ingest-1.0.0.BUILD-SNAPSHOT.jar
|
||||
dataflow:>app register --name http-ingest --type source --uri file://<Your local parent directory to the forked github repo>/spring-cloud-dataflow-samples/kafka-samples/http-ingest/target/http-ingest-2.0.0-SNAPSHOT.jar
|
||||
Successfully registered application 'source:http-ingest'
|
||||
```
|
||||
|
||||
@@ -30,14 +30,14 @@ cd kstreams-word-count
|
||||
./mvnw clean package
|
||||
```
|
||||
|
||||
After this step, the artifact `kstreams-word-count-1.0.0.BUILD-SNAPSHOT.jar` is available.
|
||||
After this step, the artifact `kstreams-word-count-2.0.0-SNAPSHOT.jar` is available.
|
||||
|
||||
You can register this artifact as the Spring Cloud Data Flow `Processor` application as follows:
|
||||
|
||||
From the Spring Cloud Data Flow shell,
|
||||
|
||||
```
|
||||
dataflow:>app register --name kstream-word-count --type processor --uri file://<Your local parent directory to the forked github repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-word-count/target/kstreams-word-count-1.0.0.BUILD-SNAPSHOT.jar
|
||||
dataflow:>app register --name kstream-word-count --type processor --uri file://<Your local parent directory to the forked github repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-word-count/target/kstreams-word-count-2.0.0-SNAPSHOT.jar
|
||||
Successfully registered application 'processor:kstream-word-count'
|
||||
```
|
||||
|
||||
@@ -86,7 +86,7 @@ You can register this artifact as the Spring Cloud Data Flow `Source` applicatio
|
||||
From the Spring Cloud Data Flow shell,
|
||||
|
||||
```
|
||||
dataflow:>app register --name http-ingest --type source --uri file://<Your local parent directory to the forked github repo>/spring-cloud-dataflow-samples/kafka-samples/http-ingest/target/http-ingest-1.0.0.BUILD-SNAPSHOT.jar
|
||||
dataflow:>app register --name http-ingest --type source --uri file://<Your local parent directory to the forked github repo>/spring-cloud-dataflow-samples/kafka-samples/http-ingest/target/http-ingest-2.0.0-SNAPSHOT.jar
|
||||
Successfully registered application 'source:http-ingest'
|
||||
```
|
||||
|
||||
@@ -137,7 +137,7 @@ cd kstreams-join-user-clicks-and-region
|
||||
Register this Kafka Streams application as `app` type:
|
||||
|
||||
```
|
||||
dataflow:> app register --name join-user-clicks-and-regions --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-join-user-clicks-and-region/target/kstreams-join-user-clicks-and-region-1.0.0.BUILD-SNAPSHOT.jar
|
||||
dataflow:> app register --name join-user-clicks-and-regions --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-join-user-clicks-and-region/target/kstreams-join-user-clicks-and-region-2.0.0-SNAPSHOT.jar
|
||||
|
||||
```
|
||||
|
||||
@@ -151,7 +151,7 @@ cd kstreams-log-user-clicks-per-region
|
||||
```
|
||||
|
||||
```
|
||||
dataflow:> app register --name log-user-clicks-per-region --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-log-user-clicks-per-region/target/kstreams-log-user-clicks-per-region-1.0.0.BUILD-SNAPSHOT.jar
|
||||
dataflow:> app register --name log-user-clicks-per-region --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-log-user-clicks-per-region/target/kstreams-log-user-clicks-per-region-2.0.0-SNAPSHOT.jar
|
||||
|
||||
```
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
<groupId>org.springframework.cloud.dataflow.samples</groupId>
|
||||
<artifactId>http-click-ingest</artifactId>
|
||||
<version>1.0.2.BUILD-SNAPSHOT</version>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<name>http-ingest</name>
|
||||
<description>Http click ingest application</description>
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
<groupId>org.springframework.cloud.dataflow.samples</groupId>
|
||||
<artifactId>http-region-ingest</artifactId>
|
||||
<version>1.0.1.BUILD-SNAPSHOT</version>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<name>http-region-ingest</name>
|
||||
<description>Http region ingest application</description>
|
||||
|
||||
|
||||
@@ -11,5 +11,5 @@ To build this application:
|
||||
Register this KStream application as `app` type:
|
||||
|
||||
```
|
||||
dataflow:> app register --name join-user-clicks-and-regions --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-join-user-clicks-and-region/target/kstreams-join-user-clicks-and-region-1.0.0.BUILD-SNAPSHOT.jar
|
||||
dataflow:> app register --name join-user-clicks-and-regions --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-join-user-clicks-and-region/target/kstreams-join-user-clicks-and-region-2.0.0-SNAPSHOT.jar
|
||||
```
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
<groupId>org.springframework.cloud.dataflow.samples</groupId>
|
||||
<artifactId>kstreams-join-user-clicks-and-region</artifactId>
|
||||
<version>1.0.1.BUILD-SNAPSHOT</version>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>kstreams-join-user-clicks-and-region</name>
|
||||
|
||||
@@ -10,5 +10,5 @@ To build this application:
|
||||
To register this application from Spring Cloud Data Flow shell:
|
||||
|
||||
```
|
||||
dataflow:> app register --name log-user-clicks-per-region --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-log-user-clicks-per-region/target/kstreams-log-user-clicks-per-region-1.0.0.BUILD-SNAPSHOT.jar
|
||||
dataflow:> app register --name log-user-clicks-per-region --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-log-user-clicks-per-region/target/kstreams-log-user-clicks-per-region-2.0.0-SNAPSHOT.jar
|
||||
```
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
<groupId>org.springframework.cloud.dataflow.samples</groupId>
|
||||
<artifactId>kstreams-log-user-clicks-per-region</artifactId>
|
||||
<version>1.0.1.BUILD-SNAPSHOT</version>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<name>kstreams-log-user-clicks-per-region</name>
|
||||
|
||||
<dependencyManagement>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.springframework.cloud.dataflow.samples</groupId>
|
||||
<artifactId>function-samples-parent</artifactId>
|
||||
<version>1.0.0.BUILD-SNAPSHOT</version>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
<modules>
|
||||
<module>http-click-ingest</module>
|
||||
|
||||
@@ -10,5 +10,5 @@ To build this application:
|
||||
To register this application from Spring Cloud Data Flow shell:
|
||||
|
||||
```
|
||||
dataflow:> app register --name log-user-clicks-per-region --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-log-user-clicks-per-region/target/kstreams-log-user-clicks-per-region-1.0.0.BUILD-SNAPSHOT.jar
|
||||
dataflow:> app register --name log-user-clicks-per-region --type app --uri file://<local parent directory of this git repo>/spring-cloud-dataflow-samples/kafka-samples/kstreams-log-user-clicks-per-region/target/kstreams-log-user-clicks-per-region-2.0.0-SNAPSHOT.jar
|
||||
```
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
<groupId>org.springframework.cloud.dataflow.samples</groupId>
|
||||
<artifactId>transform-user-clicks-per-region</artifactId>
|
||||
<version>1.0.1.BUILD-SNAPSHOT</version>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<name>transform-user-clicks-per-region</name>
|
||||
|
||||
<dependencyManagement>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
|
||||
<groupId>org.springframework.cloud.dataflow.samples</groupId>
|
||||
<artifactId>uppercase-processor</artifactId>
|
||||
<version>1.0.0-SNAPSHOT</version>
|
||||
<version>2.0.0-SNAPSHOT</version>
|
||||
<name>uppercase-processor</name>
|
||||
<description>Uppercase processor application</description>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user