Skip to content

Commit ec0bbef

Browse files
committed
ingest: upgraded ingest geoip's geoip2's dependencies.
1 parent 63afabc commit ec0bbef

10 files changed

+11
-8
lines changed

plugins/ingest-geoip/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@ esplugin {
2323
}
2424

2525
dependencies {
26-
compile ('com.maxmind.geoip2:geoip2:2.8.0')
26+
// Upgrade to 2.10.0 or higher when jackson-core gets upgraded to 2.9.x
27+
compile ('com.maxmind.geoip2:geoip2:2.9.0')
2728
// geoip2 dependencies:
28-
compile('com.fasterxml.jackson.core:jackson-annotations:2.8.2')
29-
compile('com.fasterxml.jackson.core:jackson-databind:2.8.2')
30-
compile('com.maxmind.db:maxmind-db:1.2.1')
29+
compile("com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}")
30+
compile("com.fasterxml.jackson.core:jackson-databind:${versions.jackson}")
31+
compile('com.maxmind.db:maxmind-db:1.2.2')
3132

3233
testCompile 'org.elasticsearch:geolite2-databases:20171206'
3334
}

plugins/ingest-geoip/licenses/geoip2-2.8.0.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c12b463a2c10824225c0b27952c49b464cb0e4c6
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5e924646d6f893bc9036939c5f2b4ecaee85e5da

plugins/ingest-geoip/licenses/jackson-annotations-2.8.2.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
f7b83cb2bc4b88d53961e749e1ad32f49ef017b7

plugins/ingest-geoip/licenses/jackson-databind-2.8.2.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.

plugins/ingest-geoip/licenses/maxmind-db-1.2.1.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
78c22a03de1e222b0751855aff7bb6e6db5569e5

plugins/ingest-geoip/src/main/plugin-metadata/plugin-security.policy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,6 @@ grant {
2424
// should be enough, so this permission wouldn't then be needed. Unfortunately this is not what jackson-databind does
2525
// or can be configured to do.
2626
permission java.lang.RuntimePermission "accessDeclaredMembers";
27+
// Also needed because of jackson-databind:
28+
permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
2729
};

0 commit comments

Comments
 (0)