Skip to content

Commit ee33a6d

Browse files
heremaps-botheremaps-bot
heremaps-bot
authored and
heremaps-bot
committed
HERE Data SDK for Java & Scala Release 2.72.4
1 parent 1ba15f0 commit ee33a6d

File tree

47 files changed

+196
-169
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+196
-169
lines changed

data-archive/java/avro-example/README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,8 @@ needed for a local run of the archiving application.
150150
Execute the following command in the [`avro-example`](../avro-example) directory to run the Avro Archiving Application:
151151

152152
```bash
153-
mvn compile exec:java \
154-
-Dexec.mainClass=com.here.platform.data.archive.example.Main \
155-
-Padd-dependencies-for-local-run
153+
mvn compile exec:exec \
154+
-Dexec.args="-cp %classpath com.here.platform.data.archive.example.Main" -Padd-dependencies-for-local-run
156155
```
157156

158157
At a certain point after start, the application pauses and waits for you to ingest data you want to archive.
@@ -446,7 +445,7 @@ Use the [`olp pipeline template create`](https://developer.here.com/documentatio
446445

447446
```bash
448447
olp pipeline template create avro-pipeline-template \
449-
stream-5.0 \
448+
stream-6.0 \
450449
$PATH_TO_JAR \
451450
com.here.platform.dal.DALMain \
452451
--input-catalog-ids=source \

data-archive/java/avro-example/pom.xml

+18-22
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.here.platform.data.archive</groupId>
66
<artifactId>data-archive-avro-example</artifactId>
7-
<version>0.0.934</version>
7+
<version>0.0.938</version>
88
<packaging>jar</packaging>
99

1010
<!-- Meta information section start -->
@@ -23,15 +23,17 @@
2323
<connection>scm:git:https://github.com/heremaps/here-workspace-examples-java-scala.git</connection>
2424
<developerConnection>scm:git:[email protected]:heremaps/here-workspace-examples-java-scala.git</developerConnection>
2525
<url>https://github.com/heremaps/here-workspace-examples-java-scala</url>
26-
<tag>2.71.8</tag>
26+
<tag>2.72.4</tag>
2727
</scm>
2828

2929
<!-- Meta information section end -->
3030
<properties>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3232
<java.version>1.8</java.version>
33+
<exec.classpathScope>compile</exec.classpathScope>
34+
<exec.executable>java</exec.executable>
3335

34-
<sdk-bom.version>2.71.8</sdk-bom.version>
36+
<sdk-bom.version>2.72.4</sdk-bom.version>
3537
<scala.compat.version>2.12</scala.compat.version>
3638
<artifact.wagon.version>2.0.24</artifact.wagon.version>
3739

@@ -218,14 +220,19 @@
218220
<profile>
219221
<id>add-dependencies-for-local-run</id>
220222
<dependencies>
221-
<dependency>
223+
<dependency>
224+
<groupId>org.apache.flink</groupId>
225+
<artifactId>flink-core</artifactId>
226+
<scope>compile</scope>
227+
</dependency>
228+
<dependency>
222229
<groupId>org.apache.flink</groupId>
223-
<artifactId>flink-runtime_${scala.compat.version}</artifactId>
230+
<artifactId>flink-runtime</artifactId>
224231
<scope>compile</scope>
225-
</dependency>
226-
<dependency>
232+
</dependency>
233+
<dependency>
227234
<groupId>org.apache.flink</groupId>
228-
<artifactId>flink-shaded-asm-7</artifactId>
235+
<artifactId>flink-shaded-asm-9</artifactId>
229236
<scope>compile</scope>
230237
</dependency>
231238
<dependency>
@@ -240,7 +247,7 @@
240247
</dependency>
241248
<dependency>
242249
<groupId>org.apache.flink</groupId>
243-
<artifactId>flink-optimizer_${scala.compat.version}</artifactId>
250+
<artifactId>flink-optimizer</artifactId>
244251
<scope>compile</scope>
245252
</dependency>
246253
<dependency>
@@ -268,11 +275,6 @@
268275
</exclusion>
269276
</exclusions>
270277
</dependency>
271-
<dependency>
272-
<groupId>org.apache.flink</groupId>
273-
<artifactId>flink-core</artifactId>
274-
<scope>compile</scope>
275-
</dependency>
276278
<dependency>
277279
<groupId>org.apache.flink</groupId>
278280
<artifactId>flink-java</artifactId>
@@ -285,12 +287,12 @@
285287
</dependency>
286288
<dependency>
287289
<groupId>org.apache.flink</groupId>
288-
<artifactId>flink-streaming-java_${scala.compat.version}</artifactId>
290+
<artifactId>flink-streaming-java</artifactId>
289291
<scope>compile</scope>
290292
</dependency>
291293
<dependency>
292294
<groupId>org.apache.flink</groupId>
293-
<artifactId>flink-clients_${scala.compat.version}</artifactId>
295+
<artifactId>flink-clients</artifactId>
294296
<scope>compile</scope>
295297
</dependency>
296298
<!-- The following dependencies are added to this profile to address the following-->
@@ -300,12 +302,6 @@
300302
<artifactId>slf4j-log4j12</artifactId>
301303
<scope>runtime</scope>
302304
</dependency>
303-
<dependency>
304-
<groupId>log4j</groupId>
305-
<artifactId>log4j</artifactId>
306-
<version>1.2.17</version>
307-
<scope>runtime</scope>
308-
</dependency>
309305
<dependency>
310306
<groupId>com.typesafe</groupId>
311307
<artifactId>config</artifactId>

data-archive/java/avro-example/src/main/resources/log4j.properties

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<configuration>
2+
3+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
4+
<!-- encoders are assigned the type
5+
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
6+
<encoder>
7+
<pattern>%date{HH:mm:ss.SSS} %-5p %-60c - %m%n</pattern>
8+
</encoder>
9+
</appender>
10+
11+
<root level="INFO">
12+
<appender-ref ref="STDOUT" />
13+
</root>
14+
</configuration>

data-archive/java/parquet-example/README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,8 @@ needed for a local run of the archiving application.
150150
Execute the following command in the [`parquet-example`](../parquet-example) directory to run the Parquet Archiving Application:
151151

152152
```bash
153-
mvn compile exec:java \
154-
-Dexec.mainClass=com.here.platform.data.archive.example.Main \
155-
-Padd-dependencies-for-local-run
153+
mvn compile exec:exec \
154+
-Dexec.args="-cp %classpath com.here.platform.data.archive.example.Main" -Padd-dependencies-for-local-run
156155
```
157156

158157
At a certain point after start, the application pauses and waits for you to ingest data you want to archive.
@@ -457,7 +456,7 @@ Use the [`olp pipeline template create`](https://developer.here.com/documentatio
457456

458457
```bash
459458
olp pipeline template create parquet-pipeline-template \
460-
stream-5.0 \
459+
stream-6.0 \
461460
$PATH_TO_JAR \
462461
com.here.platform.dal.DALMain \
463462
--input-catalog-ids=source \

data-archive/java/parquet-example/pom.xml

+10-15
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.here.platform.data.archive</groupId>
66
<artifactId>data-archive-parquet-example</artifactId>
7-
<version>0.0.934</version>
7+
<version>0.0.938</version>
88
<packaging>jar</packaging>
99

1010
<!-- Meta information section start -->
@@ -23,15 +23,17 @@
2323
<connection>scm:git:https://github.com/heremaps/here-workspace-examples-java-scala.git</connection>
2424
<developerConnection>scm:git:[email protected]:heremaps/here-workspace-examples-java-scala.git</developerConnection>
2525
<url>https://github.com/heremaps/here-workspace-examples-java-scala</url>
26-
<tag>2.71.8</tag>
26+
<tag>2.72.4</tag>
2727
</scm>
2828

2929
<!-- Meta information section end -->
3030
<properties>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3232
<java.version>1.8</java.version>
33+
<exec.classpathScope>compile</exec.classpathScope>
34+
<exec.executable>java</exec.executable>
3335

34-
<sdk-bom.version>2.71.8</sdk-bom.version>
36+
<sdk-bom.version>2.72.4</sdk-bom.version>
3537
<scala.compat.version>2.12</scala.compat.version>
3638
<artifact.wagon.version>2.0.24</artifact.wagon.version>
3739

@@ -221,12 +223,12 @@
221223
</dependency>
222224
<dependency>
223225
<groupId>org.apache.flink</groupId>
224-
<artifactId>flink-runtime_${scala.compat.version}</artifactId>
226+
<artifactId>flink-runtime</artifactId>
225227
<scope>compile</scope>
226228
</dependency>
227229
<dependency>
228230
<groupId>org.apache.flink</groupId>
229-
<artifactId>flink-shaded-asm-7</artifactId>
231+
<artifactId>flink-shaded-asm-9</artifactId>
230232
<scope>compile</scope>
231233
</dependency>
232234
<dependency>
@@ -241,7 +243,7 @@
241243
</dependency>
242244
<dependency>
243245
<groupId>org.apache.flink</groupId>
244-
<artifactId>flink-optimizer_${scala.compat.version}</artifactId>
246+
<artifactId>flink-optimizer</artifactId>
245247
<scope>compile</scope>
246248
</dependency>
247249
<dependency>
@@ -276,12 +278,12 @@
276278
</dependency>
277279
<dependency>
278280
<groupId>org.apache.flink</groupId>
279-
<artifactId>flink-streaming-java_${scala.compat.version}</artifactId>
281+
<artifactId>flink-streaming-java</artifactId>
280282
<scope>compile</scope>
281283
</dependency>
282284
<dependency>
283285
<groupId>org.apache.flink</groupId>
284-
<artifactId>flink-clients_${scala.compat.version}</artifactId>
286+
<artifactId>flink-clients</artifactId>
285287
<scope>compile</scope>
286288
</dependency>
287289
<!-- The following dependencies are added to this profile to address the following-->
@@ -291,20 +293,13 @@
291293
<artifactId>slf4j-log4j12</artifactId>
292294
<scope>runtime</scope>
293295
</dependency>
294-
<dependency>
295-
<groupId>log4j</groupId>
296-
<artifactId>log4j</artifactId>
297-
<version>1.2.17</version>
298-
<scope>runtime</scope>
299-
</dependency>
300296
<dependency>
301297
<groupId>com.typesafe</groupId>
302298
<artifactId>config</artifactId>
303299
</dependency>
304300
<dependency>
305301
<groupId>org.apache.avro</groupId>
306302
<artifactId>avro</artifactId>
307-
<version>1.10.0</version>
308303
</dependency>
309304
<dependency>
310305
<groupId>com.here.platform.data.client</groupId>

data-archive/java/parquet-example/src/main/resources/log4j.properties

-5
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<configuration>
2+
3+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
4+
<!-- encoders are assigned the type
5+
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
6+
<encoder>
7+
<pattern>%date{HH:mm:ss.SSS} %-5p %-60c - %m%n</pattern>
8+
</encoder>
9+
</appender>
10+
11+
<root level="INFO">
12+
<appender-ref ref="STDOUT" />
13+
</root>
14+
</configuration>

data-archive/java/sensoris-protobuf-example/README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,8 @@ needed for a local run of the archiving application.
150150
Execute the following command in the [`sensoris-protobuf-example`](../sensoris-protobuf-example) directory to run the Sensoris Protobuf Archiving Application:
151151

152152
```bash
153-
mvn compile exec:java \
154-
-Dexec.mainClass=com.here.platform.data.archive.example.Main \
155-
-Padd-dependencies-for-local-run
153+
mvn compile exec:exec \
154+
-Dexec.args="-cp %classpath com.here.platform.data.archive.example.Main" -Padd-dependencies-for-local-run
156155
```
157156

158157
At a certain point after start, the application pauses and waits for you to ingest data you want to archive.
@@ -472,7 +471,7 @@ Use the [`olp pipeline template create`](https://developer.here.com/documentatio
472471

473472
```bash
474473
olp pipeline template create sensoris-protobuf-pipeline-template \
475-
stream-5.0 \
474+
stream-6.0 \
476475
$PATH_TO_JAR \
477476
com.here.platform.dal.DALMain \
478477
--input-catalog-ids=source \

data-archive/java/sensoris-protobuf-example/pom.xml

+11-16
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.here.platform.examples</groupId>
66
<artifactId>data-archive-sensoris-protobuf-example</artifactId>
7-
<version>0.0.934</version>
7+
<version>0.0.938</version>
88
<packaging>jar</packaging>
99

1010
<!-- Meta information section -->
@@ -25,18 +25,20 @@
2525
<connection>scm:git:https://github.com/heremaps/here-workspace-examples-java-scala.git</connection>
2626
<developerConnection>scm:git:[email protected]:heremaps/here-workspace-examples-java-scala.git</developerConnection>
2727
<url>https://github.com/heremaps/here-workspace-examples-java-scala</url>
28-
<tag>2.71.8</tag>
28+
<tag>2.72.4</tag>
2929
</scm>
3030

3131
<properties>
3232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3333
<java.version>1.8</java.version>
34+
<exec.classpathScope>compile</exec.classpathScope>
35+
<exec.executable>java</exec.executable>
36+
3437
<artifact.wagon.version>2.0.24</artifact.wagon.version>
3538

36-
<sdk-bom.version>2.71.8</sdk-bom.version>
39+
<sdk-bom.version>2.72.4</sdk-bom.version>
3740
<scala.compat.version>2.12</scala.compat.version>
3841

39-
<avro.version>1.10.0</avro.version>
4042
<commons-logging.version>1.2</commons-logging.version>
4143

4244
<junit.version>4.12</junit.version>
@@ -184,12 +186,12 @@
184186
<dependencies>
185187
<dependency>
186188
<groupId>org.apache.flink</groupId>
187-
<artifactId>flink-runtime_${scala.compat.version}</artifactId>
189+
<artifactId>flink-runtime</artifactId>
188190
<scope>compile</scope>
189191
</dependency>
190192
<dependency>
191193
<groupId>org.apache.flink</groupId>
192-
<artifactId>flink-shaded-asm-7</artifactId>
194+
<artifactId>flink-shaded-asm-9</artifactId>
193195
<scope>compile</scope>
194196
</dependency>
195197
<dependency>
@@ -204,7 +206,7 @@
204206
</dependency>
205207
<dependency>
206208
<groupId>org.apache.flink</groupId>
207-
<artifactId>flink-optimizer_${scala.compat.version}</artifactId>
209+
<artifactId>flink-optimizer</artifactId>
208210
<scope>compile</scope>
209211
</dependency>
210212
<dependency>
@@ -249,12 +251,12 @@
249251
</dependency>
250252
<dependency>
251253
<groupId>org.apache.flink</groupId>
252-
<artifactId>flink-streaming-java_${scala.compat.version}</artifactId>
254+
<artifactId>flink-streaming-java</artifactId>
253255
<scope>compile</scope>
254256
</dependency>
255257
<dependency>
256258
<groupId>org.apache.flink</groupId>
257-
<artifactId>flink-clients_${scala.compat.version}</artifactId>
259+
<artifactId>flink-clients</artifactId>
258260
<scope>compile</scope>
259261
</dependency>
260262
<!-- The following dependencies are added to this profile to address the following-->
@@ -264,20 +266,13 @@
264266
<artifactId>slf4j-log4j12</artifactId>
265267
<scope>runtime</scope>
266268
</dependency>
267-
<dependency>
268-
<groupId>log4j</groupId>
269-
<artifactId>log4j</artifactId>
270-
<version>1.2.17</version>
271-
<scope>runtime</scope>
272-
</dependency>
273269
<dependency>
274270
<groupId>com.typesafe</groupId>
275271
<artifactId>config</artifactId>
276272
</dependency>
277273
<dependency>
278274
<groupId>org.apache.avro</groupId>
279275
<artifactId>avro</artifactId>
280-
<version>${avro.version}</version>
281276
</dependency>
282277
<dependency>
283278
<groupId>com.here.platform.data.client</groupId>

0 commit comments

Comments
 (0)