Skip to content

Commit

Permalink
ingest: upgraded ingest geoip's geoip2's dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnvg committed Dec 21, 2017
1 parent 8634326 commit 90ee359
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 8 deletions.
9 changes: 5 additions & 4 deletions plugins/ingest-geoip/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@ esplugin {
}

dependencies {
compile ('com.maxmind.geoip2:geoip2:2.8.0')
// Upgrade to 2.10.0 or higher when jackson-core gets upgraded to 2.9.x
compile ('com.maxmind.geoip2:geoip2:2.9.0')
// geoip2 dependencies:
compile('com.fasterxml.jackson.core:jackson-annotations:2.8.2')
compile('com.fasterxml.jackson.core:jackson-databind:2.8.2')
compile('com.maxmind.db:maxmind-db:1.2.1')
compile("com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}")
compile("com.fasterxml.jackson.core:jackson-databind:${versions.jackson}")
compile('com.maxmind.db:maxmind-db:1.2.2')

testCompile 'org.elasticsearch:geolite2-databases:20171206'
}
Expand Down
1 change: 0 additions & 1 deletion plugins/ingest-geoip/licenses/geoip2-2.8.0.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions plugins/ingest-geoip/licenses/geoip2-2.9.0.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
c12b463a2c10824225c0b27952c49b464cb0e4c6
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5e924646d6f893bc9036939c5f2b4ecaee85e5da

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f7b83cb2bc4b88d53961e749e1ad32f49ef017b7

This file was deleted.

1 change: 0 additions & 1 deletion plugins/ingest-geoip/licenses/maxmind-db-1.2.1.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions plugins/ingest-geoip/licenses/maxmind-db-1.2.2.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
78c22a03de1e222b0751855aff7bb6e6db5569e5
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ grant {
// should be enough, so this permission wouldn't then be needed. Unfortunately this is not what jackson-databind does
// or can be configured to do.
permission java.lang.RuntimePermission "accessDeclaredMembers";
// Also needed because of jackson-databind:
permission java.lang.reflect.ReflectPermission "suppressAccessChecks";
};

0 comments on commit 90ee359

Please sign in to comment.