Influence-Bootstrap-Node/build.gradle

28 lines
428 B
Groovy
Raw Normal View History

2019-02-28 11:21:49 +00:00
plugins {
id 'java'
}
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
2019-03-05 11:24:33 +00:00
maven {
url "http://tomp2p.net/dev/mvn/"
}
2019-02-28 11:21:49 +00:00
}
dependencies {
implementation 'com.google.code.gson:gson:2.8.5'
2019-03-05 11:24:33 +00:00
implementation 'net.tomp2p:tomp2p-all:5.0-Beta8'
2019-02-28 11:21:49 +00:00
}
jar {
manifest {
attributes(
'Main-Class': 'io.github.chronosx88.dhtBootstrap.Main'
)
}
}