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

21 lines
286 B
Groovy
Raw Normal View History

2020-08-26 21:09:42 +02:00
plugins {
id 'java'
}
group 'ch.mathieubroillet.leds'
version '1.0'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
jar {
manifest {
attributes("Main-Class": "ch.mathieubroillet.leds.Main")
}
}