2019-10-31 21:43:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-09 06:56:44 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-05-23 12:32:15 -04:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>libraries-data</artifactId>
|
|
|
|
<name>libraries-data</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
<artifactId>kafka-streams</artifactId>
|
|
|
|
<version>${kafka.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
<artifactId>kafka-clients</artifactId>
|
|
|
|
<version>${kafka.version}</version>
|
|
|
|
<classifier>test</classifier>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ignite</groupId>
|
|
|
|
<artifactId>ignite-core</artifactId>
|
|
|
|
<version>${ignite.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.ignite</groupId>
|
|
|
|
<artifactId>ignite-spring-data</artifactId>
|
2023-03-05 08:49:41 -05:00
|
|
|
<version>${ignite-spring-data.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>${gson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- Jcache -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.cache</groupId>
|
|
|
|
<artifactId>cache-api</artifactId>
|
|
|
|
<version>${cache.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.hazelcast</groupId>
|
|
|
|
<artifactId>hazelcast</artifactId>
|
|
|
|
<version>${hazelcast.version}</version>
|
|
|
|
</dependency>
|
2021-05-09 06:56:44 -04:00
|
|
|
<!-- crunch project -->
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.crunch</groupId>
|
|
|
|
<artifactId>crunch-core</artifactId>
|
|
|
|
<version>${org.apache.crunch.crunch-core.version}</version>
|
|
|
|
</dependency>
|
2023-02-26 11:25:24 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.javassist</groupId>
|
|
|
|
<artifactId>javassist</artifactId>
|
|
|
|
<version>${javassist.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.hadoop</groupId>
|
|
|
|
<artifactId>hadoop-client</artifactId>
|
|
|
|
<version>${org.apache.hadoop.hadoop-client}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
2021-06-11 10:55:37 -04:00
|
|
|
<version>${commons-cli.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2021-01-07 14:42:57 -05:00
|
|
|
<version>${commons-io.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-httpclient</groupId>
|
|
|
|
<artifactId>commons-httpclient</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${httpclient.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</exclusion>
|
2021-11-05 05:01:19 -04:00
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
2019-10-31 21:43:47 -04:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2023-12-15 22:46:10 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>1.3.170</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.flink</groupId>
|
|
|
|
<artifactId>flink-test-utils_2.11</artifactId>
|
|
|
|
<version>${flink.version}</version>
|
|
|
|
<scope>test</scope>
|
2021-11-05 05:01:19 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2021-09-16 13:04:26 -04:00
|
|
|
<version>${org.slf4j.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.storm</groupId>
|
|
|
|
<artifactId>storm-core</artifactId>
|
|
|
|
<version>${storm.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2020-07-16 21:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.jmapper-framework</groupId>
|
|
|
|
<artifactId>jmapper-core</artifactId>
|
|
|
|
<version>${jmapper.version}</version>
|
2023-03-05 08:49:41 -05:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
<artifactId>xstream</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
<artifactId>xstream</artifactId>
|
|
|
|
<version>1.4.16</version>
|
2020-07-16 21:46:41 -04:00
|
|
|
</dependency>
|
2023-12-15 22:46:10 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-jpa</artifactId>
|
|
|
|
<version>2.1.5.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
<artifactId>javax.persistence-api</artifactId>
|
|
|
|
<version>2.2</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2023-02-26 11:25:24 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2023-03-05 08:49:41 -05:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2023-02-26 11:25:24 -05:00
|
|
|
<configuration>
|
2023-03-05 08:49:41 -05:00
|
|
|
<argLine>
|
|
|
|
--add-opens java.base/java.nio=ALL-UNNAMED
|
|
|
|
--add-opens java.base/java.lang=ALL-UNNAMED
|
|
|
|
</argLine>
|
2023-02-26 11:25:24 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-10-31 21:43:47 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2020-01-15 15:23:26 -05:00
|
|
|
<version>${assembly.plugin.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/main/resources/assembly/hadoop-job.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>com.baeldung.crunch.WordCount</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2023-02-26 11:25:24 -05:00
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
2020-01-15 15:23:26 -05:00
|
|
|
<assembly.plugin.version>2.3</assembly.plugin.version>
|
2022-11-08 08:28:01 -05:00
|
|
|
<httpclient.version>3.1</httpclient.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<storm.version>1.2.2</storm.version>
|
2022-11-08 08:28:01 -05:00
|
|
|
<kafka.version>3.3.1</kafka.version>
|
2023-03-05 08:49:41 -05:00
|
|
|
<ignite.version>2.14.0</ignite.version>
|
|
|
|
<ignite-spring-data.version>2.9.1</ignite-spring-data.version>
|
2023-11-03 17:31:49 -04:00
|
|
|
<gson.version>2.10.1</gson.version>
|
2022-05-15 01:12:48 -04:00
|
|
|
<cache.version>1.1.1</cache.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<flink.version>1.5.0</flink.version>
|
2022-10-06 15:43:20 -04:00
|
|
|
<hazelcast.version>5.2.0</hazelcast.version>
|
2022-11-08 08:31:44 -05:00
|
|
|
<org.apache.crunch.crunch-core.version>1.0.0</org.apache.crunch.crunch-core.version>
|
2019-12-05 09:56:52 -05:00
|
|
|
<org.apache.hadoop.hadoop-client>2.2.0</org.apache.hadoop.hadoop-client>
|
2020-07-16 21:46:41 -04:00
|
|
|
<jmapper.version>1.6.0.1</jmapper.version>
|
2023-02-26 11:25:24 -05:00
|
|
|
<javassist.version>3.29.2-GA</javassist.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-09 06:56:44 -04:00
|
|
|
</project>
|