Added VersionEye settings.
This commit is contained in:
parent
2ee3568e40
commit
0e157aaf92
2 changed files with 65 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
import com.beust.kobalt.buildScript
|
||||||
import com.beust.kobalt.glob
|
import com.beust.kobalt.glob
|
||||||
import com.beust.kobalt.plugin.application.application
|
import com.beust.kobalt.plugin.application.application
|
||||||
import com.beust.kobalt.plugin.packaging.assemble
|
import com.beust.kobalt.plugin.packaging.assemble
|
||||||
|
@ -5,6 +6,7 @@ import com.beust.kobalt.plugin.packaging.install
|
||||||
import com.beust.kobalt.plugin.publish.autoGitTag
|
import com.beust.kobalt.plugin.publish.autoGitTag
|
||||||
import com.beust.kobalt.plugin.publish.bintray
|
import com.beust.kobalt.plugin.publish.bintray
|
||||||
import com.beust.kobalt.project
|
import com.beust.kobalt.project
|
||||||
|
import net.thauvin.erik.kobalt.plugin.versioneye.versionEye
|
||||||
import org.apache.maven.model.Developer
|
import org.apache.maven.model.Developer
|
||||||
import org.apache.maven.model.License
|
import org.apache.maven.model.License
|
||||||
import org.apache.maven.model.Model
|
import org.apache.maven.model.Model
|
||||||
|
@ -12,6 +14,10 @@ import org.apache.maven.model.Scm
|
||||||
import java.io.FileInputStream
|
import java.io.FileInputStream
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
|
val bs = buildScript {
|
||||||
|
plugins("net.thauvin.erik:kobalt-versioneye:")
|
||||||
|
}
|
||||||
|
|
||||||
val p = project {
|
val p = project {
|
||||||
name = "pinboard-poster"
|
name = "pinboard-poster"
|
||||||
group = "net.thauvin.erik"
|
group = "net.thauvin.erik"
|
||||||
|
@ -87,4 +93,10 @@ val p = project {
|
||||||
vcsTag = version
|
vcsTag = version
|
||||||
sign = true
|
sign = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
versionEye {
|
||||||
|
org = "Thauvin"
|
||||||
|
team = "Owners"
|
||||||
|
pom = true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
53
pom.xml
Normal file
53
pom.xml
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>net.thauvin.erik</groupId>
|
||||||
|
<artifactId>pinboard-poster</artifactId>
|
||||||
|
<version>0.9.0</version>
|
||||||
|
<name>pinboard-poster</name>
|
||||||
|
<description></description>
|
||||||
|
<url>https://github.com/ethauvin/pinboard-poster</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>BSD 3-Clause</name>
|
||||||
|
<url>https://opensource.org/licenses/BSD-3-Clause</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>ethauvin</id>
|
||||||
|
<name>Erik C. Thauvin</name>
|
||||||
|
<email>erik@thauvin.net</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>https://github.com/ethauvin/pinboard-poster.git</connection>
|
||||||
|
<developerConnection>git@github.com:ethauvin/pinboard-poster.git</developerConnection>
|
||||||
|
<url>https://github.com/ethauvin/pinboard-poster</url>
|
||||||
|
</scm>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
|
<artifactId>kotlin-stdlib</artifactId>
|
||||||
|
<version>1.1.2-3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>okhttp</artifactId>
|
||||||
|
<version>3.8.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.testng</groupId>
|
||||||
|
<artifactId>testng</artifactId>
|
||||||
|
<version>6.11</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
|
<artifactId>kotlin-test</artifactId>
|
||||||
|
<version>1.1.2-3</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
Loading…
Add table
Add a link
Reference in a new issue