Skip to content

Commit b05ea0a

Browse files
heremaps-botheremaps-bot
authored andcommitted
HERE Data SDK for Java & Scala Release 2.28.0
1 parent a7c4157 commit b05ea0a

File tree

61 files changed

+304
-306
lines changed

Some content is hidden

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

61 files changed

+304
-306
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ You can use the OLP CLI to create pipeline components and activate the pipeline
176176

177177
```bash
178178
olp pipeline create $PIPELINE_NAME --scope $PROJECT_HRN
179-
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-3.0.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
179+
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-4.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
180180
--input-catalog-ids=source --workers=2 --scope $PROJECT_HRN # Note that the value of workers should be greater than or equal to the value of parallelism selected in application.conf
181181
olp pipeline version create $PIPELINE_VERSION_NAME $PIPELINE_ID $PIPELINE_TEMPLATE_ID \
182182
"$PATH_TO_CONFIG_FOLDER/pipeline-config.conf" --scope $PROJECT_HRN

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

Lines changed: 7 additions & 7 deletions
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.662</version>
7+
<version>0.0.678</version>
88
<packaging>jar</packaging>
99

1010
<!-- Meta information section start -->
@@ -23,16 +23,16 @@
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.27.0</tag>
26+
<tag>2.28.0</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>
3333

34-
<sdk-bom.version>2.27.6</sdk-bom.version>
35-
<scala.compat.version>2.11</scala.compat.version>
34+
<sdk-bom.version>2.28.13</sdk-bom.version>
35+
<scala.compat.version>2.12</scala.compat.version>
3636

3737
<avro.version>1.10.0</avro.version>
3838
<commons-logging.version>1.2</commons-logging.version>
@@ -46,7 +46,7 @@
4646
<!-- SDK Stream BOM -->
4747
<dependency>
4848
<groupId>com.here.platform</groupId>
49-
<artifactId>sdk-stream-bom</artifactId>
49+
<artifactId>sdk-stream-bom_${scala.compat.version}</artifactId>
5050
<version>${sdk-bom.version}</version>
5151
<type>pom</type>
5252
<scope>import</scope>
@@ -97,7 +97,7 @@
9797
<!-- Here Dependencies from sdk-stream-bom pom -->
9898
<dependency>
9999
<groupId>com.here.platform.data.archive</groupId>
100-
<artifactId>data-archive</artifactId>
100+
<artifactId>data-archive_${scala.compat.version}</artifactId>
101101
</dependency>
102102
<dependency>
103103
<groupId>com.here.sdii</groupId>
@@ -140,7 +140,7 @@
140140
<plugin>
141141
<groupId>org.apache.maven.plugins</groupId>
142142
<artifactId>maven-shade-plugin</artifactId>
143-
<version>3.1.0</version>
143+
<version>3.2.4</version>
144144
<executions>
145145
<!-- Run shade goal on package phase -->
146146
<execution>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ You can use the OLP CLI to create pipeline components and activate the pipeline
175175

176176
```bash
177177
olp pipeline create $PIPELINE_NAME --scope $PROJECT_HRN
178-
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-3.0.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
178+
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-4.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
179179
--input-catalog-ids=source --workers=2 --scope $PROJECT_HRN # Note that the value of workers should be greater than or equal to the value of parallelism selected in application.conf
180180
olp pipeline version create $PIPELINE_VERSION_NAME $PIPELINE_ID $PIPELINE_TEMPLATE_ID \
181181
"$PATH_TO_CONFIG_FOLDER/pipeline-config.conf" --scope $PROJECT_HRN

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

Lines changed: 7 additions & 7 deletions
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.662</version>
7+
<version>0.0.678</version>
88
<packaging>jar</packaging>
99

1010
<!-- Meta information section start -->
@@ -23,16 +23,16 @@
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.27.0</tag>
26+
<tag>2.28.0</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>
3333

34-
<sdk-bom.version>2.27.6</sdk-bom.version>
35-
<scala.compat.version>2.11</scala.compat.version>
34+
<sdk-bom.version>2.28.13</sdk-bom.version>
35+
<scala.compat.version>2.12</scala.compat.version>
3636

3737
<hadoop-client.version>2.7.3</hadoop-client.version>
3838
<parquet-protobuf.version>1.11.1</parquet-protobuf.version>
@@ -46,7 +46,7 @@
4646
<!-- SDK Stream BOM -->
4747
<dependency>
4848
<groupId>com.here.platform</groupId>
49-
<artifactId>sdk-stream-bom</artifactId>
49+
<artifactId>sdk-stream-bom_${scala.compat.version}</artifactId>
5050
<version>${sdk-bom.version}</version>
5151
<type>pom</type>
5252
<scope>import</scope>
@@ -92,7 +92,7 @@
9292
<!-- Here Dependencies from sdk-stream-bom pom -->
9393
<dependency>
9494
<groupId>com.here.platform.data.archive</groupId>
95-
<artifactId>data-archive</artifactId>
95+
<artifactId>data-archive_${scala.compat.version}</artifactId>
9696
</dependency>
9797
<dependency>
9898
<groupId>com.here.sdii</groupId>
@@ -129,7 +129,7 @@
129129
<plugin>
130130
<groupId>org.apache.maven.plugins</groupId>
131131
<artifactId>maven-shade-plugin</artifactId>
132-
<version>3.1.0</version>
132+
<version>3.2.4</version>
133133
<executions>
134134
<!-- Run shade goal on package phase -->
135135
<execution>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ You can use the OLP CLI to create pipeline components and activate the pipeline
175175

176176
```bash
177177
olp pipeline create $PIPELINE_NAME --scope $PROJECT_HRN
178-
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-3.0.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
178+
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-4.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
179179
--input-catalog-ids=source --workers=2 --scope $PROJECT_HRN # Note that the value of workers should be greater than or equal to the value of parallelism selected in application.conf
180180
olp pipeline version create $PIPELINE_VERSION_NAME $PIPELINE_ID $PIPELINE_TEMPLATE_ID \
181181
"$PATH_TO_CONFIG_FOLDER/pipeline-config.conf" --scope $PROJECT_HRN

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

Lines changed: 7 additions & 7 deletions
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-protobuf-example</artifactId>
7-
<version>0.0.662</version>
7+
<version>0.0.678</version>
88
<packaging>jar</packaging>
99

1010
<!-- Meta information section start -->
@@ -23,16 +23,16 @@
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.27.0</tag>
26+
<tag>2.28.0</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>
3333

34-
<sdk-bom.version>2.27.6</sdk-bom.version>
35-
<scala.compat.version>2.11</scala.compat.version>
34+
<sdk-bom.version>2.28.13</sdk-bom.version>
35+
<scala.compat.version>2.12</scala.compat.version>
3636

3737
<commons-logging.version>1.2</commons-logging.version>
3838

@@ -44,7 +44,7 @@
4444
<!-- SDK Stream BOM -->
4545
<dependency>
4646
<groupId>com.here.platform</groupId>
47-
<artifactId>sdk-stream-bom</artifactId>
47+
<artifactId>sdk-stream-bom_${scala.compat.version}</artifactId>
4848
<version>${sdk-bom.version}</version>
4949
<type>pom</type>
5050
<scope>import</scope>
@@ -68,7 +68,7 @@
6868
<!-- Here Dependencies from sdk-stream-bom pom -->
6969
<dependency>
7070
<groupId>com.here.platform.data.archive</groupId>
71-
<artifactId>data-archive</artifactId>
71+
<artifactId>data-archive_${scala.compat.version}</artifactId>
7272
</dependency>
7373
<dependency>
7474
<groupId>com.here.sdii</groupId>
@@ -109,7 +109,7 @@
109109
<plugin>
110110
<groupId>org.apache.maven.plugins</groupId>
111111
<artifactId>maven-shade-plugin</artifactId>
112-
<version>3.1.0</version>
112+
<version>3.2.4</version>
113113
<executions>
114114
<!-- Run shade goal on package phase -->
115115
<execution>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ You can use the OLP CLI to create pipeline components and activate the pipeline
176176

177177
```bash
178178
olp pipeline create $PIPELINE_NAME --scope $PROJECT_HRN
179-
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-3.0.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
179+
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-4.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
180180
--input-catalog-ids=source --workers=2 --scope $PROJECT_HRN # Note that the value of workers should be greater than or equal to the value of parallelism selected in application.conf
181181
olp pipeline version create $PIPELINE_VERSION_NAME $PIPELINE_ID $PIPELINE_TEMPLATE_ID \
182182
"$PATH_TO_CONFIG_FOLDER/pipeline-config.conf" \

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

Lines changed: 7 additions & 7 deletions
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-parquet-example</artifactId>
7-
<version>0.0.662</version>
7+
<version>0.0.678</version>
88
<packaging>jar</packaging>
99

1010
<!-- Meta information section -->
@@ -23,16 +23,16 @@
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.27.0</tag>
26+
<tag>2.28.0</tag>
2727
</scm>
2828

2929
<properties>
3030
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3131
<java.version>1.8</java.version>
3232
<artifact.wagon.version>1.6.0</artifact.wagon.version>
3333

34-
<sdk-bom.version>2.27.6</sdk-bom.version>
35-
<scala.compat.version>2.11</scala.compat.version>
34+
<sdk-bom.version>2.28.13</sdk-bom.version>
35+
<scala.compat.version>2.12</scala.compat.version>
3636
<hadoop-client.version>2.7.3</hadoop-client.version>
3737
<parquet-protobuf.version>1.11.1</parquet-protobuf.version>
3838
<commons-logging.version>1.2</commons-logging.version>
@@ -47,7 +47,7 @@
4747
<!-- SDK Stream BOM -->
4848
<dependency>
4949
<groupId>com.here.platform</groupId>
50-
<artifactId>sdk-stream-bom</artifactId>
50+
<artifactId>sdk-stream-bom_${scala.compat.version}</artifactId>
5151
<version>${sdk-bom.version}</version>
5252
<type>pom</type>
5353
<scope>import</scope>
@@ -87,7 +87,7 @@
8787
<!-- Here Dependencies from sdk-stream-bom pom -->
8888
<dependency>
8989
<groupId>com.here.platform.data.archive</groupId>
90-
<artifactId>data-archive</artifactId>
90+
<artifactId>data-archive_${scala.compat.version}</artifactId>
9191
</dependency>
9292
<dependency>
9393
<groupId>com.here.platform.location</groupId>
@@ -137,7 +137,7 @@
137137
<plugin>
138138
<groupId>org.apache.maven.plugins</groupId>
139139
<artifactId>maven-shade-plugin</artifactId>
140-
<version>3.0.0</version>
140+
<version>3.2.4</version>
141141
<executions>
142142
<!-- Run shade goal on package phase -->
143143
<execution>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ You can use the OLP CLI to create pipeline components and activate the pipeline
176176

177177
```bash
178178
olp pipeline create $PIPELINE_NAME --scope $PROJECT_HRN
179-
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-3.0.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
179+
olp pipeline template create $PIPELINE_TEMPLATE_NAME stream-4.0 $PATH_TO_JAR com.here.platform.dal.DALMain \
180180
--input-catalog-ids=source --workers=2 --scope $PROJECT_HRN # Note that the value of workers should be greater than or equal to the value of parallelism selected in application.conf
181181
olp pipeline version create $PIPELINE_VERSION_NAME $PIPELINE_ID $PIPELINE_TEMPLATE_ID \
182182
"$PATH_TO_CONFIG_FOLDER/pipeline-config.conf" --scope $PROJECT_HRN

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

Lines changed: 7 additions & 7 deletions
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.662</version>
7+
<version>0.0.678</version>
88
<packaging>jar</packaging>
99

1010
<!-- Meta information section -->
@@ -25,16 +25,16 @@
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.27.0</tag>
28+
<tag>2.28.0</tag>
2929
</scm>
3030

3131
<properties>
3232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3333
<java.version>1.8</java.version>
3434
<artifact.wagon.version>2.0.5</artifact.wagon.version>
3535

36-
<sdk-bom.version>2.27.6</sdk-bom.version>
37-
<scala.compat.version>2.11</scala.compat.version>
36+
<sdk-bom.version>2.28.13</sdk-bom.version>
37+
<scala.compat.version>2.12</scala.compat.version>
3838

3939
<commons-logging.version>1.2</commons-logging.version>
4040

@@ -48,7 +48,7 @@
4848
<!-- SDK Stream BOM -->
4949
<dependency>
5050
<groupId>com.here.platform</groupId>
51-
<artifactId>sdk-stream-bom</artifactId>
51+
<artifactId>sdk-stream-bom_${scala.compat.version}</artifactId>
5252
<version>${sdk-bom.version}</version>
5353
<type>pom</type>
5454
<scope>import</scope>
@@ -66,7 +66,7 @@
6666
<!-- Here Dependencies from sdk-stream-bom pom -->
6767
<dependency>
6868
<groupId>com.here.platform.data.archive</groupId>
69-
<artifactId>data-archive</artifactId>
69+
<artifactId>data-archive_${scala.compat.version}</artifactId>
7070
</dependency>
7171
<dependency>
7272
<groupId>com.here.platform.location</groupId>
@@ -116,7 +116,7 @@
116116
<plugin>
117117
<groupId>org.apache.maven.plugins</groupId>
118118
<artifactId>maven-shade-plugin</artifactId>
119-
<version>3.0.0</version>
119+
<version>3.2.4</version>
120120
<executions>
121121
<!-- Run shade goal on package phase -->
122122
<execution>

0 commit comments

Comments
 (0)