Swap out getopt, gettext, and geoip code in Gradle libs for dependencies

This commit is contained in:
str4d
2017-11-27 15:36:09 +00:00
parent 646dbffe69
commit 9be53ecb43
5 changed files with 13 additions and 0 deletions

View File

@@ -6,6 +6,8 @@ sourceSets {
main {
java {
srcDir 'java/src'
exclude 'gnu/getopt'
exclude 'gnu/gettext'
}
resources {
srcDir 'java/src'
@@ -25,6 +27,11 @@ sourceSets {
}
}
dependencies {
implementation 'gnu.getopt:java-getopt:1.0.13'
implementation 'org.gnu.gettext:libintl:0.18.3'
}
configurations {
tests
}