2019-04-12 11:24:06 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
|
|
|
|
}
|
2019-02-28 11:21:49 +00:00
|
|
|
}
|
|
|
|
|
2019-04-12 11:24:06 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
|
2019-05-16 13:55:39 +00:00
|
|
|
version '0.3.1'
|
2019-02-28 11:21:49 +00:00
|
|
|
|
|
|
|
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-05-14 18:11:19 +00:00
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
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'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|