kiwi-java/build.gradle

18 lines
356 B
Groovy
Raw Permalink Normal View History

apply plugin: 'java'
2019-03-02 20:32:20 +00:00
apply plugin: 'idea'
apply from: "https://github.com/shadowfacts/maven/raw/master/maven.gradle"
2021-12-22 23:03:10 +00:00
sourceCompatibility = 17
targetCompatibility = 17
2019-03-02 20:32:20 +00:00
group = "no.birkett"
archivesBaseName = "kiwi"
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
2021-12-22 23:03:10 +00:00
testImplementation group: 'junit', name: 'junit', version: '4.11'
}