Initial commit.
This commit is contained in:
commit
6d523414de
15 changed files with 566 additions and 0 deletions
49
kobalt/src/Build.kt
Normal file
49
kobalt/src/Build.kt
Normal file
|
@ -0,0 +1,49 @@
|
|||
import com.beust.kobalt.*
|
||||
import com.beust.kobalt.plugin.packaging.*
|
||||
import com.beust.kobalt.plugin.application.*
|
||||
import com.beust.kobalt.plugin.apt.apt
|
||||
import com.beust.kobalt.plugin.java.*
|
||||
|
||||
val repos = repos()
|
||||
val processorJar = "net.thauvin.erik:semver:0.9.6-beta"
|
||||
|
||||
|
||||
val p = project {
|
||||
|
||||
name = "kobalt-semver-test"
|
||||
group = "com.example"
|
||||
artifactId = name
|
||||
version = "0.1"
|
||||
|
||||
sourceDirectories {
|
||||
path("src/main/java")
|
||||
}
|
||||
|
||||
sourceDirectoriesTest {
|
||||
path("src/test/java")
|
||||
}
|
||||
|
||||
apt {
|
||||
outputDir = "/src/generated/java/"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
apt(processorJar)
|
||||
compile(processorJar)
|
||||
}
|
||||
|
||||
dependenciesTest {
|
||||
compile("org.testng:testng:")
|
||||
|
||||
}
|
||||
|
||||
assemble {
|
||||
jar {
|
||||
}
|
||||
}
|
||||
|
||||
application {
|
||||
mainClass = "com.example.Main"
|
||||
}
|
||||
|
||||
}
|
BIN
kobalt/wrapper/kobalt-wrapper.jar
Normal file
BIN
kobalt/wrapper/kobalt-wrapper.jar
Normal file
Binary file not shown.
1
kobalt/wrapper/kobalt-wrapper.properties
Normal file
1
kobalt/wrapper/kobalt-wrapper.properties
Normal file
|
@ -0,0 +1 @@
|
|||
kobalt.version=0.905
|
Loading…
Add table
Add a link
Reference in a new issue