|
4 | 4 |
|
5 | 5 | <groupId>com.here.platform.data.archive</groupId>
|
6 | 6 | <artifactId>data-archive-avro-example</artifactId>
|
7 |
| - <version>0.0.729</version> |
| 7 | + <version>0.0.739</version> |
8 | 8 | <packaging>jar</packaging>
|
9 | 9 |
|
10 | 10 | <!-- Meta information section start -->
|
|
23 | 23 | <connection>scm:git:https://github.com/heremaps/here-workspace-examples-java-scala.git</connection>
|
24 | 24 | < developerConnection>scm:git: [email protected]:heremaps/here-workspace-examples-java-scala.git</ developerConnection>
|
25 | 25 | <url>https://github.com/heremaps/here-workspace-examples-java-scala</url>
|
26 |
| - <tag>2.33.0</tag> |
| 26 | + <tag>2.34.0</tag> |
27 | 27 | </scm>
|
28 | 28 |
|
29 | 29 | <!-- Meta information section end -->
|
30 | 30 | <properties>
|
31 | 31 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
32 | 32 | <java.version>1.8</java.version>
|
33 | 33 |
|
34 |
| - <sdk-bom.version>2.33.3</sdk-bom.version> |
| 34 | + <sdk-bom.version>2.34.5</sdk-bom.version> |
35 | 35 | <scala.compat.version>2.12</scala.compat.version>
|
36 | 36 |
|
37 | 37 | <avro.version>1.10.0</avro.version>
|
|
198 | 198 | </build>
|
199 | 199 |
|
200 | 200 | <!-- This profile helps to make things run out of the box in IntelliJ -->
|
201 |
| - <!-- Its adds Flink's core classes to the runtime class path. --> |
| 201 | + <!-- It adds Flink's core classes to the runtime class path. --> |
202 | 202 | <!-- Otherwise they are missing in IntelliJ, because the dependency is 'provided' -->
|
203 | 203 | <profiles>
|
204 | 204 | <profile>
|
|
229 | 229 | <artifactId>flink-streaming-java_${scala.compat.version}</artifactId>
|
230 | 230 | <scope>compile</scope>
|
231 | 231 | </dependency>
|
| 232 | + <!-- The following dependencies are added to this profile to address the following--> |
| 233 | + <!-- There is a known issue where data-archive pom's transitive dependencies are not resolved when running in an IDE--> |
| 234 | + <dependency> |
| 235 | + <groupId>org.slf4j</groupId> |
| 236 | + <artifactId>slf4j-log4j12</artifactId> |
| 237 | + <scope>runtime</scope> |
| 238 | + </dependency> |
| 239 | + <dependency> |
| 240 | + <groupId>log4j</groupId> |
| 241 | + <artifactId>log4j</artifactId> |
| 242 | + <version>1.2.17</version> |
| 243 | + <scope>runtime</scope> |
| 244 | + </dependency> |
| 245 | + <dependency> |
| 246 | + <groupId>com.typesafe</groupId> |
| 247 | + <artifactId>config</artifactId> |
| 248 | + </dependency> |
| 249 | + <dependency> |
| 250 | + <groupId>org.apache.avro</groupId> |
| 251 | + <artifactId>avro</artifactId> |
| 252 | + </dependency> |
| 253 | + <dependency> |
| 254 | + <groupId>com.here.platform.data.client</groupId> |
| 255 | + <artifactId>flink-support_${scala.compat.version}</artifactId> |
| 256 | + </dependency> |
| 257 | + <dependency> |
| 258 | + <groupId>com.here.olp.util</groupId> |
| 259 | + <artifactId>mapquad</artifactId> |
| 260 | + </dependency> |
232 | 261 | </dependencies>
|
233 | 262 | </profile>
|
234 | 263 | <!-- HERE Artifact Service repository -->
|
|
0 commit comments