fix compilation with Gradle to account for GeoIP2 and systray changes

This commit is contained in:
zab2
2019-01-13 14:04:03 +00:00
parent 4283d71b92
commit cf27938983
2 changed files with 1 additions and 2 deletions

View File

@@ -10,4 +10,5 @@ dependencies {
compile project(':core') compile project(':core')
compile project(':router') compile project(':router')
compile project(':installer') compile project(':installer')
compile project(':apps:systray')
} }

View File

@@ -4,7 +4,6 @@ sourceSets {
main { main {
java { java {
srcDir 'java/src' srcDir 'java/src'
exclude 'com/maxmind'
} }
} }
test { test {
@@ -21,7 +20,6 @@ sourceSets {
dependencies { dependencies {
api project(':core') api project(':core')
implementation 'com.maxmind.geoip:geoip-api:1.3.1'
implementation 'gnu.getopt:java-getopt:1.0.13' implementation 'gnu.getopt:java-getopt:1.0.13'
testImplementation project(path: ':core', configuration: 'tests') testImplementation project(path: ':core', configuration: 'tests')
} }