Skip to content

Commit

Permalink
Prepare release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pron committed Apr 8, 2016
1 parent 74bea71 commit a9323d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand All @@ -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'
}
Expand Down

0 comments on commit a9323d3

Please sign in to comment.