mirror of
https://github.com/ChronosX88/Influence-Bootstrap-Node.git
synced 2024-11-08 17:31:00 +00:00
28 lines
428 B
Groovy
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'
|
|
)
|
|
}
|
|
}
|