Skip to content

Commit c3fa7b0

Browse files
author
gituser
committed
Merge branch '1.10_release_4.0.x' into 1.10_release_4.1.x
2 parents 368ee5f + 0412966 commit c3fa7b0

File tree

2 files changed

+23
-21
lines changed
  • elasticsearch5/elasticsearch5-sink
  • elasticsearch6/elasticsearch6-sink

2 files changed

+23
-21
lines changed

elasticsearch5/elasticsearch5-sink/pom.xml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,19 @@
1919
<version>5.3.3</version>
2020
</dependency>
2121

22-
<dependency>
23-
<groupId>ch.qos.logback</groupId>
24-
<artifactId>logback-core</artifactId>
25-
<version>1.1.7</version>
26-
</dependency>
27-
28-
<dependency>
29-
<groupId>ch.qos.logback</groupId>
30-
<artifactId>logback-classic</artifactId>
31-
<version>1.1.7</version>
32-
</dependency>
33-
3422
<dependency>
3523
<groupId>org.elasticsearch.client</groupId>
3624
<artifactId>x-pack-transport</artifactId>
3725
<version>5.3.3</version>
3826
</dependency>
3927

28+
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
29+
<dependency>
30+
<groupId>org.slf4j</groupId>
31+
<artifactId>slf4j-log4j12</artifactId>
32+
<version>1.6.1</version>
33+
</dependency>
34+
4035
<dependency>
4136
<groupId>org.apache.logging.log4j</groupId>
4237
<artifactId>log4j-to-slf4j</artifactId>

elasticsearch6/elasticsearch6-sink/pom.xml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,27 +31,34 @@
3131
</dependency>
3232

3333
<dependency>
34-
<groupId>ch.qos.logback</groupId>
35-
<artifactId>logback-core</artifactId>
36-
<version>1.1.7</version>
34+
<groupId>log4j</groupId>
35+
<artifactId>log4j</artifactId>
36+
<version>1.2.17</version>
3737
</dependency>
3838

3939
<dependency>
40-
<groupId>ch.qos.logback</groupId>
41-
<artifactId>logback-classic</artifactId>
42-
<version>1.1.7</version>
40+
<artifactId>slf4j-api</artifactId>
41+
<groupId>org.slf4j</groupId>
42+
<version>1.7.15</version>
4343
</dependency>
4444

45+
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
4546
<dependency>
46-
<groupId>org.apache.logging.log4j</groupId>
47-
<artifactId>log4j-to-slf4j</artifactId>
48-
<version>2.7</version>
47+
<groupId>org.slf4j</groupId>
48+
<artifactId>slf4j-log4j12</artifactId>
49+
<version>1.6.1</version>
4950
</dependency>
5051

5152
<dependency>
5253
<groupId>org.apache.flink</groupId>
5354
<artifactId>flink-connector-elasticsearch6_2.11</artifactId>
5455
<version>${flink.version}</version>
56+
<exclusions>
57+
<exclusion>
58+
<artifactId>log4j-to-slf4j</artifactId>
59+
<groupId>org.apache.logging.log4j</groupId>
60+
</exclusion>
61+
</exclusions>
5562
</dependency>
5663

5764
<dependency>

0 commit comments

Comments
 (0)