Influence-Bootstrap-Node/build.gradle

28 lines
422 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 {
2019-03-05 11:24:33 +00:00
implementation 'net.tomp2p:tomp2p-all:5.0-Beta8'
2019-03-11 16:54:56 +00:00
implementation 'org.slf4j:slf4j-log4j12:+'
2019-02-28 11:21:49 +00:00
}
jar {
manifest {
attributes(
'Main-Class': 'io.github.chronosx88.dhtBootstrap.Main'
)
}
}