29 lines
448 B
Groovy
29 lines
448 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'application'
|
|
|
|
mainClassName = 'de.redstoneunion.git.MrGeorgen.timsort.test'
|
|
|
|
// tag::repositories[]
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
// end::repositories[]
|
|
|
|
// tag::jar[]
|
|
jar {
|
|
archiveBaseName = 'timsort'
|
|
archiveVersion = '0.1.0'
|
|
}
|
|
// end::jar[]
|
|
|
|
// tag::dependencies[]
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
dependencies {
|
|
}
|
|
// end::dependencies[]
|
|
|
|
// tag::wrapper[]
|
|
// end::wrapper[]
|