21 lines
286 B
Groovy
21 lines
286 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'ch.mathieubroillet.leds'
|
|
version '2.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes("Main-Class": "ch.mathieubroillet.leds.Main")
|
|
}
|
|
}
|