forked from Steven/RockPaperScissors
24 lines
320 B
Groovy
24 lines
320 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'tech.nevets.smsbot'
|
|
version '1.0.0'
|
|
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes(
|
|
'Main-Class': 'tech.nevets.rockpaperscissors.Main'
|
|
)
|
|
}
|
|
} |