mirror of https://github.com/zlatinb/muwire
10 lines
314 B
Groovy
10 lines
314 B
Groovy
apply plugin : 'application'
|
|
mainClassName = 'com.muwire.hostcache.HostCache'
|
|
applicationDefaultJvmArgs = ['-Djava.util.logging.config.file=logging.properties']
|
|
|
|
dependencies {
|
|
compile "net.i2p:i2p:${i2pVersion}"
|
|
testCompile 'org.junit.jupiter:junit-jupiter-api:5.4.2'
|
|
testCompile 'junit:junit:4.12'
|
|
}
|