Added pom.
This commit is contained in:
parent
5b88abdb7c
commit
ec778764ae
8 changed files with 41 additions and 16 deletions
|
@ -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 {
|
||||
|
|
|
@ -1 +1 @@
|
|||
kobalt.version=0.846
|
||||
kobalt.version=0.847
|
Loading…
Add table
Add a link
Reference in a new issue