kiwi-java/build.gradle

18 lines
356 B
Groovy

apply plugin: 'java'
apply plugin: 'idea'
apply from: "https://github.com/shadowfacts/maven/raw/master/maven.gradle"
sourceCompatibility = 17
targetCompatibility = 17
group = "no.birkett"
archivesBaseName = "kiwi"
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.11'
}