Influence-Bootstrap-Node/build.gradle
2019-05-16 17:55:39 +04:00

39 lines
697 B
Groovy

buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
}
}
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
version '0.3.1'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url "http://tomp2p.net/dev/mvn/"
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'net.tomp2p:tomp2p-all:5.0-Beta8'
implementation 'org.slf4j:slf4j-log4j12:+'
}
jar {
manifest {
attributes(
'Main-Class': 'io.github.chronosx88.dhtBootstrap.Main'
)
}
}