diff --git a/README.md b/README.md index 1f24dc3..140c7dd 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ In addition to [Capsule's](https://github.com/puniverse/capsule), only if the pl ## Usage -The Gradle-style dependency you need to embed in your Capsule JAR, which you can generate with the tool you prefer (f.e. with plain Maven/Gradle as in [Photon](https://github.com/puniverse/photon) and [`capsule-gui-demo`](https://github.com/puniverse/capsule-gui-demo) or higher-level [Capsule build plugins](https://github.com/puniverse/capsule#build-tool-plugins)), is `co.paralleluniverse:capsule-daemon:0.1.0`. Also include the caplet class in your Capsule manifest, for example: +The Gradle-style dependency you need to embed in your Capsule JAR, which you can generate with the tool you prefer (f.e. with plain Maven/Gradle as in [Photon](https://github.com/puniverse/photon) and [`capsule-gui-demo`](https://github.com/puniverse/capsule-gui-demo) or higher-level [Capsule build plugins](https://github.com/puniverse/capsule#build-tool-plugins)), is `co.paralleluniverse:capsule-daemon:0.2.0`. Also include the caplet class in your Capsule manifest, for example: ``` gradle Caplets: MavenCapsule DaemonCapsule @@ -19,7 +19,7 @@ The Gradle-style dependency you need to embed in your Capsule JAR, which you can `capsule-daemon` can also be run as a wrapper capsule without embedding it: ``` bash -$ java -Dcapsule.log=verbose -jar capsule-daemon-0.1.0.jar my-capsule.jar my-capsule-arg1 ... +$ java -Dcapsule.log=verbose -jar capsule-daemon-0.2.0.jar my-capsule.jar my-capsule-arg1 ... ``` It can be both run against (or embedded in) plain (e.g. "fat") capsules and [Maven-based](https://github.com/puniverse/capsule-maven) ones. diff --git a/build.gradle b/build.gradle index b1ca0a5..f143035 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ targetCompatibility = '1.7' [compileJava, compileTestJava]*.options*.encoding = 'UTF-8' group = "co.paralleluniverse" -version = "0.2.0-SNAPSHOT" +version = "0.2.0" status = "integration" description = "Daemon/Service Caplet based on jsvc and procrun" ext.url = "https://github.com/puniverse/${project.name}" @@ -37,7 +37,7 @@ repositories { } dependencies { - compile 'co.paralleluniverse:capsule:1.0' + compile 'co.paralleluniverse:capsule:1.0.2' runtime 'commons-daemon:commons-daemon:1.0.15' testCompile group: 'junit', name: 'junit', version: '4.10' }