Added circleci configuration.
This commit is contained in:
parent
36bf4794db
commit
15b9772f5f
6 changed files with 29 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
# [Pinboard](https://pinboard.in) Poster for Kotlin/Java
|
||||
|
||||
[](http://opensource.org/licenses/BSD-3-Clause) [](https://travis-ci.org/ethauvin/pinboard-poster) [](https://www.versioneye.com/user/projects/591c0293b81f680038a784b3) [](https://bintray.com/ethauvin/maven/pinboard-poster/_latestVersion)
|
||||
[](http://opensource.org/licenses/BSD-3-Clause) [](https://travis-ci.org/ethauvin/pinboard-poster) [](https://www.versioneye.com/user/projects/591c0293b81f680038a784b3) [](https://circleci.com/gh/ethauvin/pinboard-poster/tree/master) [](https://bintray.com/ethauvin/maven/pinboard-poster/_latestVersion)
|
||||
|
||||
A small Kotlin/Java library for posting to [Pinboard](https://pinboard.in).
|
||||
|
||||
|
|
11
circle.yml
Normal file
11
circle.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
machine:
|
||||
java:
|
||||
version: oraclejdk8
|
||||
|
||||
dependencies:
|
||||
override:
|
||||
- chmod +x kobaltw
|
||||
|
||||
test:
|
||||
override:
|
||||
- ./kobaltw assemble
|
|
@ -20,6 +20,15 @@
|
|||
</SOURCES>
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="Kobalt: kobalt-maven-local-0.5.3.jar">
|
||||
<CLASSES>
|
||||
<root url="jar://$USER_HOME$/.kobalt/cache/net/thauvin/erik/kobalt-maven-local/0.5.3/kobalt-maven-local-0.5.3.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="Kobalt: kobalt-versioneye-0.4.5.jar">
|
||||
<CLASSES>
|
||||
|
|
|
@ -24,7 +24,7 @@ val p = project {
|
|||
group = "net.thauvin.erik"
|
||||
description = "Pinboard Poster for Kotlin/Java"
|
||||
artifactId = name
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
|
||||
val localProperties = Properties().apply {
|
||||
val f = "local.properties"
|
||||
|
@ -52,7 +52,7 @@ val p = project {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compile("org.jetbrains.kotlin:kotlin-stdlib:1.1.2-3")
|
||||
compile("org.jetbrains.kotlin:kotlin-stdlib:1.1.2-4")
|
||||
compile("com.squareup.okhttp3:okhttp:3.8.0")
|
||||
}
|
||||
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="Kobalt: com.squareup.okio:okio:jar:1.13.0">
|
||||
<library name="Kobalt: com.squareup.okhttp3:okhttp:jar:3.8.0">
|
||||
<CLASSES>
|
||||
<root url="jar://$USER_HOME$/.kobalt/cache/com/squareup/okio/okio/1.13.0/okio-1.13.0.jar!/" />
|
||||
<root url="jar://$USER_HOME$/.kobalt/cache/com/squareup/okhttp3/okhttp/3.8.0/okhttp-3.8.0.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
|
@ -40,9 +40,9 @@
|
|||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library">
|
||||
<library name="Kobalt: com.squareup.okhttp3:okhttp:jar:3.8.0">
|
||||
<library name="Kobalt: com.squareup.okio:okio:jar:1.13.0">
|
||||
<CLASSES>
|
||||
<root url="jar://$USER_HOME$/.kobalt/cache/com/squareup/okhttp3/okhttp/3.8.0/okhttp-3.8.0.jar!/" />
|
||||
<root url="jar://$USER_HOME$/.kobalt/cache/com/squareup/okio/okio/1.13.0/okio-1.13.0.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net.thauvin.erik</groupId>
|
||||
<artifactId>pinboard-poster</artifactId>
|
||||
<version>0.9.1</version>
|
||||
<version>0.9.2</version>
|
||||
<name>pinboard-poster</name>
|
||||
<description>Pinboard Poster for Kotlin/Java</description>
|
||||
<url>https://github.com/ethauvin/pinboard-poster</url>
|
||||
|
@ -30,7 +30,7 @@
|
|||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-stdlib</artifactId>
|
||||
<version>1.1.2-3</version>
|
||||
<version>1.1.2-4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.squareup.okhttp3</groupId>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue