Skip to content

Commit 6aca7a3

Browse files
committed
[PLUGIN-1881] updating hadoop and ES version
1 parent 182d19f commit 6aca7a3

File tree

1 file changed

+37
-17
lines changed

1 file changed

+37
-17
lines changed

pom.xml

Lines changed: 37 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<groupId>io.cdap.plugins</groupId>
2323
<artifactId>elasticsearch-plugins</artifactId>
24-
<version>1.10.0-SNAPSHOT</version>
24+
<version>1.11.0-SNAPSHOT</version>
2525

2626
<licenses>
2727
<license>
@@ -69,29 +69,41 @@
6969

7070
<repositories>
7171
<repository>
72-
<id>sonatype.release</id>
73-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
72+
<id>sonatype</id>
73+
<url>https://oss.sonatype.org/content/groups/public</url>
74+
<releases>
75+
<enabled>true</enabled>
76+
</releases>
77+
<snapshots>
78+
<enabled>false</enabled>
79+
</snapshots>
7480
</repository>
7581
<repository>
7682
<id>sonatype-snapshots</id>
7783
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
84+
<releases>
85+
<enabled>false</enabled>
86+
</releases>
87+
<snapshots>
88+
<enabled>true</enabled>
89+
</snapshots>
7890
</repository>
7991
</repositories>
8092

8193
<properties>
8294
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
83-
<cdap.version>6.1.1</cdap.version>
84-
<hadoop.version>2.3.0</hadoop.version>
95+
<cdap.version>6.11.0</cdap.version>
96+
<hadoop.version>3.3.6</hadoop.version>
8597
<junit.version>4.11</junit.version>
86-
<hydrator.version>2.3.0-SNAPSHOT</hydrator.version>
87-
<es.version>7.6.2</es.version>
88-
<es-hadoop.version>7.6.2</es-hadoop.version>
98+
<hydrator.version>2.13.0</hydrator.version>
99+
<es.version>9.0.0</es.version>
100+
<es-hadoop.version>9.0.0</es-hadoop.version>
101+
<es.client.version>7.17.28</es.client.version>
89102
<slf4j.version>1.7.5</slf4j.version>
90-
<netty.version>4.0.30.Final</netty.version>
91-
<log4j.version>2.16.0</log4j.version>
92-
<logback.version>1.1.7</logback.version>
103+
<netty.version>4.1.94.Final</netty.version>
104+
<log4j.version>2.19.0</log4j.version>
105+
<logback.version>1.2.11</logback.version>
93106
<commons.version>3.1</commons.version>
94-
<junit.version>4.11</junit.version>
95107
<commons-httpclient.version>3.1</commons-httpclient.version>
96108
<!-- this is here because project.basedir evaluates to null in the script build step -->
97109
<main.basedir>${project.basedir}</main.basedir>
@@ -117,7 +129,7 @@
117129
</dependency>
118130
<dependency>
119131
<groupId>io.cdap.cdap</groupId>
120-
<artifactId>cdap-data-pipeline</artifactId>
132+
<artifactId>cdap-data-pipeline3_2.12</artifactId>
121133
<version>${cdap.version}</version>
122134
<scope>test</scope>
123135
</dependency>
@@ -136,6 +148,10 @@
136148
<groupId>org.slf4j</groupId>
137149
<artifactId>slf4j-log4j12</artifactId>
138150
</exclusion>
151+
<exclusion>
152+
<groupId>org.slf4j</groupId>
153+
<artifactId>slf4j-reload4j</artifactId>
154+
</exclusion>
139155
<exclusion>
140156
<groupId>com.google.inject.extensions</groupId>
141157
<artifactId>guice-servlet</artifactId>
@@ -184,6 +200,10 @@
184200
<groupId>org.slf4j</groupId>
185201
<artifactId>slf4j-log4j12</artifactId>
186202
</exclusion>
203+
<exclusion>
204+
<groupId>org.slf4j</groupId>
205+
<artifactId>slf4j-reload4j</artifactId>
206+
</exclusion>
187207
<exclusion>
188208
<groupId>org.apache.avro</groupId>
189209
<artifactId>avro</artifactId>
@@ -252,13 +272,13 @@
252272
<dependency><!-- required by elasticsearch -->
253273
<groupId>org.elasticsearch.plugin</groupId>
254274
<artifactId>transport-netty4-client</artifactId>
255-
<version>${es.version}</version>
275+
<version>${es.client.version}</version>
256276
<scope>test</scope>
257277
</dependency>
258278
<dependency>
259279
<groupId>org.elasticsearch.client</groupId>
260280
<artifactId>transport</artifactId>
261-
<version>${es.version}</version>
281+
<version>${es.client.version}</version>
262282
</dependency>
263283
<dependency><!-- required by elasticsearch -->
264284
<groupId>org.apache.logging.log4j</groupId>
@@ -348,8 +368,8 @@
348368
<version>1.1.0</version>
349369
<configuration>
350370
<cdapArtifacts>
351-
<parent>system:cdap-data-pipeline[6.1.1,7.0.0)</parent>
352-
<parent>system:cdap-data-streams[6.1.1,7.0.0)</parent>
371+
<parent>system:cdap-data-pipeline[6.11.0,7.0.0)</parent>
372+
<parent>system:cdap-data-streams[6.11.0,7.0.0)</parent>
353373
</cdapArtifacts>
354374
</configuration>
355375
<executions>

0 commit comments

Comments
 (0)