<dependencies><dependency><groupId>co.paralleluniverse</groupId><artifactId>quasar-core</artifactId><version>0.6.0</version></dependency>...</dependencies><build><plugins><plugin><artifactId>maven-dependency-plugin</artifactId><version>2.5.1</version><executions><execution><id>getClasspathFilenames</id><goals><goal>properties</goal></goals></execution></executions></plugin>...</plugins></build>
Later on, use the property it sets as documented here with the form:groupId:artifactId:type:[classifier]like so<argument>-javaagent:${co.paralleluniverse:quasar-core:jar}</argument>
$ git clone https://github.com/vy/quasar-maven-plugin$ cd quasar-maven-plugin$ mvn clean install$ mv install:install-file \-Dfile=target/quasar-maven-plugin-1.0-SNAPSHOT.jar \-DgroupId=com.github.vy \-DartifactId=quasar-maven-plugin \-Dversion=1.0-SNAPSHOT \-Dpackaging=maven-plugin
<build>
<plugins>
<plugin>
<groupId>com.github.vy</groupId>
<artifactId>quasar-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<configuration>
<check>true</check>
<debug>true</debug>
<verbose>true</verbose>
</configuration>
<executions>
<execution>
<goals>
<goal>quasar</goal>
</goals>
</execution>
</executions>
</plugin>
...
</plugins>
</build>
--
You received this message because you are subscribed to a topic in the Google Groups "quasar-pulsar-user" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/quasar-pulsar-user/MwgjqqBwN3o/unsubscribe.
To unsubscribe from this group and all its topics, send an email to quasar-pulsar-u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hey Ron!Actually, I had shared the necessary steps to reproduce the problem (along with some "class not found” t messages) up in the thread. (See https://groups.google.com/d/msg/quasar-pulsar-user/MwgjqqBwN3o/PSBa6d-ZyW4J)Best.
To unsubscribe from this group and all its topics, send an email to quasar-pulsar-user+unsub...@googlegroups.com.
$ git clone https://github.com/vy/quasar-maven-plugin$ cd quasar-maven-plugin
$ mvn clean install install:install-file \
-Dfile=target/quasar-maven-plugin-1.0-SNAPSHOT.jar \-DgroupId=com.github.vy \-DartifactId=quasar-maven-plugin \-Dversion=1.0-SNAPSHOT \-Dpackaging=maven-plugin
$ git clone https://github.com/vy/quasar-maven-plugin-test$ cd quasar-maven-plugin-test$ mvn clean install assembly:single...[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ quasar-maven-plugin-test ---[INFO] Changes detected - recompiling the module![INFO] Compiling 1 source file to /home/vy/java/quasar-maven-plugin-test/target/classes[INFO][INFO] --- quasar-maven-plugin:1.0-SNAPSHOT:instrument (default) @ quasar-maven-plugin-test ---
[INFO] Instrumenting Quasar classes...[INFO] Reading class: java/lang/Object
[INFO] Reading class: co/paralleluniverse/strands/SuspendableCallable[INFO] Reading class: java/io/Serializable[INFO] Found class: /home/vy/java/quasar-maven-plugin-test/target/classes/com/github/vy/maven/plugins/quasar/test/FiberTest$1.class[INFO] Instrumenting 1 classes...[INFO] TRANSFORM: com/github/vy/maven/plugins/quasar/test/FiberTest$1[INFO] Method com/github/vy/maven/plugins/quasar/test/FiberTest$1#<init> suspendable: NON_SUSPENDABLE (markedSuspendable: NON_SUSPENDABLE setSuspendable: NON_SUSPENDABLE)[INFO] Method com/github/vy/maven/plugins/quasar/test/FiberTest$1#run suspendable: SUSPENDABLE (markedSuspendable: SUSPENDABLE setSuspendable: SUSPENDABLE)[INFO] Method com/github/vy/maven/plugins/quasar/test/FiberTest$1#run suspendable: SUSPENDABLE (markedSuspendable: SUSPENDABLE setSuspendable: SUSPENDABLE)[INFO] About to instrument method com/github/vy/maven/plugins/quasar/test/FiberTest$1#run()Ljava/lang/Integer;[INFO] Reading class: co/paralleluniverse/strands/Strand[INFO] Instrumenting method com/github/vy/maven/plugins/quasar/test/FiberTest$1#run()Ljava/lang/Integer;[INFO] About to instrument method com/github/vy/maven/plugins/quasar/test/FiberTest$1#run()Ljava/lang/Object;[INFO] Instrumenting method com/github/vy/maven/plugins/quasar/test/FiberTest$1#run()Ljava/lang/Object;...$ java \-cp target/quasar-maven-plugin-test-1.0-SNAPSHOT-jar-with-dependencies.jar \com.github.vy.maven.plugins.quasar.test.FiberTestQUASAR WARNING: Quasar Java Agent isn't running. If you're using another instrumentation method you can ignore this message; otherwise, please refer to the Getting Started section in the Quasar documentation.
$ _ # No output means JUnit did not bark.
To unsubscribe from this group and all its topics, send an email to quasar-pulsar-u...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to quasar-pulsar-user+unsubscribe@googlegroups.com.