parts of merge sort
This commit is contained in:
28
build.gradle
Normal file
28
build.gradle
Normal file
@ -0,0 +1,28 @@
|
||||
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[]
|
||||
Reference in New Issue
Block a user