Added VersionEye info.
This commit is contained in:
parent
424e6c4dbd
commit
cd68fab06f
1 changed files with 24 additions and 10 deletions
|
@ -1,16 +1,25 @@
|
||||||
import com.beust.kobalt.*
|
import com.beust.kobalt.buildScript
|
||||||
import com.beust.kobalt.plugin.application.*
|
import com.beust.kobalt.file
|
||||||
import com.beust.kobalt.plugin.packaging.*
|
import com.beust.kobalt.plugin.packaging.assemble
|
||||||
import com.beust.kobalt.plugin.publish.*
|
import com.beust.kobalt.plugin.packaging.install
|
||||||
import net.thauvin.erik.kobalt.plugin.exec.*
|
import com.beust.kobalt.plugin.publish.autoGitTag
|
||||||
import org.apache.maven.model.*
|
import com.beust.kobalt.plugin.publish.bintray
|
||||||
import java.io.*
|
import com.beust.kobalt.project
|
||||||
|
import net.thauvin.erik.kobalt.plugin.exec.Os
|
||||||
|
import net.thauvin.erik.kobalt.plugin.exec.exec
|
||||||
|
import net.thauvin.erik.kobalt.plugin.versioneye.versionEye
|
||||||
|
import org.apache.maven.model.Developer
|
||||||
|
import org.apache.maven.model.License
|
||||||
|
import org.apache.maven.model.Model
|
||||||
|
import org.apache.maven.model.Scm
|
||||||
|
import java.io.FileInputStream
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
val bs = buildScript {
|
val bs = buildScript {
|
||||||
plugins("net.thauvin.erik:kobalt-maven-local:")
|
//repos(file("K:/maven/repository"))
|
||||||
plugins("net.thauvin.erik:kobalt-exec:")
|
plugins("net.thauvin.erik:kobalt-maven-local:",
|
||||||
repos(localMaven())
|
"net.thauvin.erik:kobalt-exec:",
|
||||||
|
"net.thauvin.erik:kobalt-versioneye:")
|
||||||
}
|
}
|
||||||
|
|
||||||
fun StringBuilder.prepend(s: String): StringBuilder {
|
fun StringBuilder.prepend(s: String): StringBuilder {
|
||||||
|
@ -100,4 +109,9 @@ val semver = project {
|
||||||
commandLine(listOf("pandoc") + args, os = setOf(Os.LINUX))
|
commandLine(listOf("pandoc") + args, os = setOf(Os.LINUX))
|
||||||
commandLine(listOf("cmd", "/c", "pandoc") + args, os = setOf(Os.WINDOWS))
|
commandLine(listOf("cmd", "/c", "pandoc") + args, os = setOf(Os.WINDOWS))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
versionEye {
|
||||||
|
org = "thauvin"
|
||||||
|
team = "Owners"
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue