This repository has been archived on 2023-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
magichome-leds-management/build.gradle
2020-10-10 10:32:16 +02:00

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")
}
}