diff --git a/README.md b/README.md index 6fbcd50..f91f2b8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # [Pinboard](https://pinboard.in) Poster for Kotlin/Java -[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![Build Status](https://travis-ci.org/ethauvin/pinboard-poster.svg?branch=master)](https://travis-ci.org/ethauvin/pinboard-poster) [![Dependency Status](https://www.versioneye.com/user/projects/591c0293b81f680038a784b3/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/591c0293b81f680038a784b3) [![Download](https://api.bintray.com/packages/ethauvin/maven/pinboard-poster/images/download.svg)](https://bintray.com/ethauvin/maven/pinboard-poster/_latestVersion) +[![License (3-Clause BSD)](https://img.shields.io/badge/license-BSD%203--Clause-blue.svg?style=flat-square)](http://opensource.org/licenses/BSD-3-Clause) [![Build Status](https://travis-ci.org/ethauvin/pinboard-poster.svg?branch=master)](https://travis-ci.org/ethauvin/pinboard-poster) [![Dependency Status](https://www.versioneye.com/user/projects/591c0293b81f680038a784b3/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/591c0293b81f680038a784b3) [![CircleCI](https://circleci.com/gh/ethauvin/pinboard-poster/tree/master.svg?style=shield)](https://circleci.com/gh/ethauvin/pinboard-poster/tree/master) [![Download](https://api.bintray.com/packages/ethauvin/maven/pinboard-poster/images/download.svg)](https://bintray.com/ethauvin/maven/pinboard-poster/_latestVersion) A small Kotlin/Java library for posting to [Pinboard](https://pinboard.in). diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..0351b69 --- /dev/null +++ b/circle.yml @@ -0,0 +1,11 @@ +machine: + java: + version: oraclejdk8 + +dependencies: + override: + - chmod +x kobaltw + +test: + override: + - ./kobaltw assemble \ No newline at end of file diff --git a/kobalt/Build.kt.iml b/kobalt/Build.kt.iml index 307aac2..88a1538 100644 --- a/kobalt/Build.kt.iml +++ b/kobalt/Build.kt.iml @@ -20,6 +20,15 @@ + + + + + + + + + diff --git a/kobalt/src/Build.kt b/kobalt/src/Build.kt index d036bc0..63db74d 100644 --- a/kobalt/src/Build.kt +++ b/kobalt/src/Build.kt @@ -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") } diff --git a/pinboard-poster.iml b/pinboard-poster.iml index fbc7e4c..a2f0d39 100644 --- a/pinboard-poster.iml +++ b/pinboard-poster.iml @@ -22,9 +22,9 @@ - + - + @@ -40,9 +40,9 @@ - + - + diff --git a/pom.xml b/pom.xml index a2889ba..6c14fe2 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 net.thauvin.erik pinboard-poster - 0.9.1 + 0.9.2 pinboard-poster Pinboard Poster for Kotlin/Java https://github.com/ethauvin/pinboard-poster @@ -30,7 +30,7 @@ org.jetbrains.kotlin kotlin-stdlib - 1.1.2-3 + 1.1.2-4 com.squareup.okhttp3