diff --git a/.gitignore b/.gitignore index e236f57..173de82 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ **/.idea/tasks.xml **/.idea/workspace.xml *.iws +*.sublime-* .classpath .DS_Store .gradle diff --git a/example/kobalt/src/Build.kt b/example/kobalt/src/Build.kt index a1c5abf..f3372f2 100644 --- a/example/kobalt/src/Build.kt +++ b/example/kobalt/src/Build.kt @@ -8,7 +8,7 @@ import net.thauvin.erik.kobalt.plugin.exec.* // ./kobaltw example2:exec --log 2 val bs = buildScript { - //plugins(file("../kobaltBuild/libs/kobalt-exec-0.6.4.jar")) + //repos(file("K:/maven/repository")) plugins("net.thauvin.erik:kobalt-exec:") } diff --git a/kobalt/src/Build.kt b/kobalt/src/Build.kt index 76b95c2..79929cc 100644 --- a/kobalt/src/Build.kt +++ b/kobalt/src/Build.kt @@ -7,7 +7,8 @@ import net.thauvin.erik.kobalt.plugin.versioneye.versionEye import org.apache.maven.model.* val bs = buildScript { - plugins("net.thauvin.erik:kobalt-versioneye:") + repos(file("K:/maven/repository")) + plugins("net.thauvin.erik:kobalt-versioneye:", "net.thauvin.erik:kobalt-maven-local:") } val dev by profile() @@ -18,7 +19,7 @@ val p = project { name = "kobalt-exec" group = "net.thauvin.erik" artifactId = name - version = "0.6.4" + version = "0.6.5" pom = Model().apply { description = "Command Line Execution plug-in for the Kobalt build system." @@ -48,7 +49,9 @@ val p = project { } assemble { - mavenJars {} + mavenJars { + fatJar = true + } } autoGitTag {