From f751bec038afbdf97161af92f0a84f08a643ab34 Mon Sep 17 00:00:00 2001 From: Joe Hegarty Date: Fri, 12 Feb 2016 15:40:08 -0700 Subject: [PATCH] Version 1.0.2 --- README.md | 16 ++++++++-------- async/pom.xml | 2 +- maven-plugin/README.md | 4 ++-- maven-plugin/pom.xml | 2 +- maven-plugin/src/test/project-to-test/pom.xml | 6 +++--- pom.xml | 2 +- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 44e07a9..ed53c10 100644 --- a/README.md +++ b/README.md @@ -118,23 +118,23 @@ The only requirement to use EA Async is that must be used only inside methods th com.ea.async ea-async - 1.0.1 + 1.0.2 ``` ### Gradle ``` -'com.ea.async:ea-async:1.0.1' +'com.ea.async:ea-async:1.0.2' ``` ### Instrumenting your code #### Option 1 - JVM parameter -Start your application with an extra JVM parameter: `-javaagent:ea-async-1.0.1.jar` +Start your application with an extra JVM parameter: `-javaagent:ea-async-1.0.2.jar` ``` - java -javaagent:ea-async-1.0.1.jar -cp your_claspath YourMainClass args... + java -javaagent:ea-async-1.0.2.jar -cp your_claspath YourMainClass args... ``` It's recommended to add this as a default option to launchers in IntelliJ projects that use ea-async. @@ -152,18 +152,18 @@ It might interfere with JVM debugging. This alternative is present as a fallback #### Option 3 - Run instrumentation tool -The ea-async-1.0.1.jar is a runnable jar that can pre-instrument your files. +The ea-async-1.0.2.jar is a runnable jar that can pre-instrument your files. Usage: ```bash -java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.0.1.jar classDirectory +java -cp YOUR_PROJECT_CLASSPATH -jar ea-async-1.0.2.jar classDirectory ``` Example: ```bash -java -cp guava.jar;commons-lang.jar -jar ea-async-1.0.1.jar target/classes +java -cp guava.jar;commons-lang.jar -jar ea-async-1.0.2.jar target/classes ``` After that all the files in target/classes will have been instrumented. @@ -186,7 +186,7 @@ This is the best option for libraries and maven projects. com.ea.async ea-async-maven-plugin - 1.0.1 + 1.0.2 diff --git a/async/pom.xml b/async/pom.xml index 0ea3a5e..a7e8cae 100644 --- a/async/pom.xml +++ b/async/pom.xml @@ -33,7 +33,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. com.ea.async ea-async-parent - 1.0.2-SNAPSHOT + 1.0.2 .. ea-async diff --git a/maven-plugin/README.md b/maven-plugin/README.md index a8cf1c8..485dc65 100644 --- a/maven-plugin/README.md +++ b/maven-plugin/README.md @@ -24,7 +24,7 @@ Add the EA Async dependency: com.ea.async ea-async - 1.0.1 + 1.0.2 ``` @@ -36,7 +36,7 @@ Add the build plugin that will instrument the uses of `await` com.ea.async ea-async-maven-plugin - 1.0.1 + 1.0.2 diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 7d679af..6954f46 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -31,7 +31,7 @@ com.ea.async ea-async-parent - 1.0.2-SNAPSHOT + 1.0.2 .. com.ea.async diff --git a/maven-plugin/src/test/project-to-test/pom.xml b/maven-plugin/src/test/project-to-test/pom.xml index 2b8d535..fa3bb16 100644 --- a/maven-plugin/src/test/project-to-test/pom.xml +++ b/maven-plugin/src/test/project-to-test/pom.xml @@ -31,7 +31,7 @@ com.ea.async ea-async-parent - 1.0.2-SNAPSHOT + 1.0.2 ../../../.. com.ea.async.samples @@ -67,7 +67,7 @@ com.ea.async ea-async-maven-plugin - 1.0.2-SNAPSHOT + 1.0.2 @@ -90,7 +90,7 @@ com.ea.async ea-async - 1.0.2-SNAPSHOT + 1.0.2 diff --git a/pom.xml b/pom.xml index 94e93df..6021502 100644 --- a/pom.xml +++ b/pom.xml @@ -29,7 +29,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 4.0.0 com.ea.async ea-async-parent - 1.0.2-SNAPSHOT + 1.0.2 pom EA Async Parent EA Async implements async-await methods in the JVM. It allows programmers to write asynchronous code in