Influence-Bootstrap-Node/build.gradle
2019-03-05 15:24:33 +04:00

28 lines
428 B
Groovy

plugins {
id 'java'
}
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "http://tomp2p.net/dev/mvn/"
}
}
dependencies {
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'net.tomp2p:tomp2p-all:5.0-Beta8'
}
jar {
manifest {
attributes(
'Main-Class': 'io.github.chronosx88.dhtBootstrap.Main'
)
}
}