Skip to content

Commit 8073f15

Browse files
committed
Yaml files updated to reflect what was demonstrated in presentation
1 parent c888121 commit 8073f15

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

creekfunctions/src/main/java/io/spring/creekfunctions/ReportCreekMeasurements.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
* is safe-ish for kayaking. It then prints this result to console.
2525
*/
2626
public class ReportCreekMeasurements implements Function<List<CreekMeasurement>, String> {
27-
2827
@Override
2928
public String apply(List<CreekMeasurement> creekMeasurements) {
3029

creekproducer/src/main/resources/application.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ spring:
1111
bindings:
1212
output:
1313
destination: usgs-data
14-
group: foo
14+
15+
16+
17+
18+
19+
20+
21+
22+
1523
server:
1624
port: 0

creektransformer/pom.xml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,25 +22,18 @@
2222
<groupId>org.springframework.cloud</groupId>
2323
<artifactId>spring-cloud-stream-binder-rabbit</artifactId>
2424
</dependency>
25-
<dependency>
26-
<groupId>org.springframework.cloud</groupId>
27-
<artifactId>spring-cloud-function-context</artifactId>
28-
</dependency>
25+
2926
<dependency>
3027
<groupId>io.spring</groupId>
3128
<artifactId>creekfunctions</artifactId>
3229
<version>0.0.1-SNAPSHOT</version>
3330
</dependency>
31+
3432
<dependency>
3533
<groupId>org.springframework.boot</groupId>
3634
<artifactId>spring-boot-starter-test</artifactId>
3735
<scope>test</scope>
3836
</dependency>
39-
<dependency>
40-
<groupId>org.springframework.cloud</groupId>
41-
<artifactId>spring-cloud-stream-test-binder</artifactId>
42-
<scope>test</scope>
43-
</dependency>
4437
</dependencies>
4538
<dependencyManagement>
4639
<dependencies>

creektransformer/src/main/resources/application.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ spring:
1313
group: foo
1414
output:
1515
destination: creek-data
16-
group: foo

streampoc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.0.0-SNAPSHOT</version>
8+
<version>3.0.0</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>io.spring</groupId>

0 commit comments

Comments
 (0)