diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml
index 2bbc8ca..89ab48c 100644
--- a/.idea/copyright/profiles_settings.xml
+++ b/.idea/copyright/profiles_settings.xml
@@ -1,5 +1,5 @@
-
+
diff --git a/.idea/deployment.xml b/.idea/deployment.xml
deleted file mode 100644
index 820375f..0000000
--- a/.idea/deployment.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/.idea/kobalt.xml b/.idea/kobalt.xml
new file mode 100644
index 0000000..22821d8
--- /dev/null
+++ b/.idea/kobalt.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
index cbe635d..30626e1 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -40,10 +40,6 @@
-
-
-
-
diff --git a/.idea/scopes/Source.xml b/.idea/scopes/Source.xml
index 5ed504c..f3b802c 100644
--- a/.idea/scopes/Source.xml
+++ b/.idea/scopes/Source.xml
@@ -1,3 +1,3 @@
-
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
index 4c0d94b..94a25f7 100644
--- a/.idea/vcs.xml
+++ b/.idea/vcs.xml
@@ -2,8 +2,5 @@
-
-
-
\ No newline at end of file
diff --git a/kobalt/src/Build.kt b/kobalt/src/Build.kt
index ec8fbcd..bd1af62 100644
--- a/kobalt/src/Build.kt
+++ b/kobalt/src/Build.kt
@@ -2,6 +2,10 @@ import com.beust.kobalt.plugin.packaging.assemble
import com.beust.kobalt.plugin.publish.bintray
import com.beust.kobalt.project
import com.beust.kobalt.repos
+import org.apache.maven.model.Developer
+import org.apache.maven.model.License
+import org.apache.maven.model.Model
+import org.apache.maven.model.Scm
val repos = repos()
@@ -15,6 +19,26 @@ val p = project {
artifactId = name
version = "0.5.0-beta"
+ pom = Model().apply {
+ name = project.name
+ description = "Command line execution plugin for the Kobalt build system"
+ url = "https://github.com/ethauvin/kobalt-exec"
+ licenses = listOf(License().apply {
+ name = "BSD 3-Clause"
+ url = "https://opensource.org/licenses/BSD-3-Clause"
+ })
+ scm = Scm().apply {
+ url = "https://github.com/ethauvin/kobalt-exec"
+ connection = "https://github.com/ethauvin/kobalt-exec.git"
+ developerConnection = "git@github.com:ethauvin/kobalt-exec.git"
+ }
+ developers = listOf(Developer().apply {
+ id = "ethauvin"
+ name = "Erik C. Thauvin"
+ email = "erik@thauvin.net"
+ })
+ }
+
sourceDirectories {
path("src/main/kotlin")
}
@@ -33,8 +57,7 @@ val p = project {
}
assemble {
- mavenJars {
- }
+ mavenJars {}
}
bintray {
diff --git a/kobalt/wrapper/kobalt-wrapper.properties b/kobalt/wrapper/kobalt-wrapper.properties
index 0630fba..ef6d4d8 100644
--- a/kobalt/wrapper/kobalt-wrapper.properties
+++ b/kobalt/wrapper/kobalt-wrapper.properties
@@ -1 +1 @@
-kobalt.version=0.846
\ No newline at end of file
+kobalt.version=0.847
\ No newline at end of file