mirror of
https://github.com/ChronosX88/Influence-Bootstrap-Node.git
synced 2024-11-08 17:31:00 +00:00
24 lines
316 B
Groovy
24 lines
316 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'io.github.chronosx88.dhtBootstrap.Main'
|
|
)
|
|
}
|
|
}
|