Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed Jun 14, 2019
1 parent b1cb15d commit 96078f4
Show file tree
Hide file tree
Showing 47 changed files with 86 additions and 72 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changes by Version

## v1.3.0 (2019-06-14)
* Officially support Spring plugins.
* Re-integrate [Instrumentation Plugins](https://github.com/opentracing-contrib/java-specialagent/#supported-instrumentation-plugins): Grizzly AHC, Grizzly Http Server, Reactor.
* New [Instrumentation Plugins](https://github.com/opentracing-contrib/java-specialagent/#supported-instrumentation-plugins): Spring Messaging, Spring WebSocket STOMP, Spring `@JmsListener`, Spring RabbitMQ.
* Update to Apache HttpClient Plugin: Added `hostname` and `port` tags to http client spans.
* Upgrade to SpecialAgent API in lieu of Fingerprinting Algorithm rewrite.
* Resolve issue #86: DynamoDB Calls regarding bad headers when using LightStep.
* Resolve issue #87: Apache HttpClient Plugin regarding default HTTP port.
* Resolve issue #88: Redis Plugin regarding PubSub.

## v1.2.0 (2019-05-31)
* New [Instrumentation Plugins](https://github.com/opentracing-contrib/java-specialagent/#supported-instrumentation-plugins): Feign, Zuul, Spring Kafka, Spring Scheduling.
* Upgrade to SpecialAgent API, requiring AgentRule(s) to explicitly specify a name for the instrumentation plugin.
Expand Down
33 changes: 17 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@ To use the [<ins>SpecialAgent</ins>](#41-specialagent) on an application, first

##### 2.1.1.1 Stable

The latest stable release is: [1.2.0][main-release].
The latest stable release is: [1.3.0][main-release].

```bash
wget -O opentracing-specialagent-1.2.0.jar "http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.2.0/opentracing-specialagent-1.2.0.jar"
wget -O opentracing-specialagent-1.3.0.jar "http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.3.0/opentracing-specialagent-1.3.0.jar"
```

##### 2.1.1.2 Development

The latest development release is: <ins>1.2.1-SNAPSHOT</ins>.
The latest development release is: <ins>1.3.1-SNAPSHOT</ins>.
```bash
wget -O opentracing-specialagent-1.2.1-SNAPSHOT.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=io.opentracing.contrib.specialagent&a=opentracing-specialagent&v=LATEST"
wget -O opentracing-specialagent-1.3.1-SNAPSHOT.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=io.opentracing.contrib.specialagent&a=opentracing-specialagent&v=LATEST"
```

This is the main artifact that contains within it the [<ins>Instrumentation Plugins</ins>](#44-instrumentation-plugin) from the [opentracing-contrib][opentracing-contrib] organization for which [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule) have been implemented. This JAR can be specified as the `-javaagent` target for static attach to an application. This JAR can also be executed, standalone, with an argument representing the PID of a target process to which it should dynamically attach. Please refer to [Usage](#usage) section for usage instructions.
Expand All @@ -88,13 +88,13 @@ For development of [<ins>Instrumentation Plugins</ins>](#44-instrumentation-plug
<dependency>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>opentracing-specialagent-api</artifactId>
<version>1.2.0</version> <!--version>1.2.1-SNAPSHOT<version-->
<version>1.3.0</version> <!--version>1.3.1-SNAPSHOT<version-->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>opentracing-specialagent</artifactId>
<version>1.2.0</version> <!--version>1.2.1-SNAPSHOT<version-->
<version>1.3.0</version> <!--version>1.3.1-SNAPSHOT<version-->
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand All @@ -108,16 +108,16 @@ _**Prerequisite**: The [<ins>SpecialAgent</ins>](#41-specialagent) requires [Ora

The [<ins>SpecialAgent</ins>](#41-specialagent) is built in 2 passes that utilize different profiles:

1. The `default` profile is used for development of [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule). It builds and runs tests for each rule, but _does not bundle the rules_ into [`opentracing-specialagent-1.2.0.jar`][main-release]
1. The `default` profile is used for development of [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule). It builds and runs tests for each rule, but _does not bundle the rules_ into [`opentracing-specialagent-1.3.0.jar`][main-release]

To run this profile:
```bash
mvn clean install
```

1. The `assemble` profile is used to bundle the [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule) into [`opentracing-specialagent-1.2.0.jar`][main-release]. It builds each rule, but _does not run tests._ Once the build with the `assemble` profile is finished, the [`opentracing-specialagent-1.2.0.jar`][main-release] will contain the built rules inside it.
1. The `assemble` profile is used to bundle the [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule) into [`opentracing-specialagent-1.3.0.jar`][main-release]. It builds each rule, but _does not run tests._ Once the build with the `assemble` profile is finished, the [`opentracing-specialagent-1.3.0.jar`][main-release] will contain the built rules inside it.

_**Note**: If you do not run this step, the [`opentracing-specialagent-1.2.0.jar`][main-release] from the previous step will not contain any [<ins>Instrumentation Plugins</ins>](#44-instrumentation-plugin) within it!_
_**Note**: If you do not run this step, the [`opentracing-specialagent-1.3.0.jar`][main-release] from the previous step will not contain any [<ins>Instrumentation Plugins</ins>](#44-instrumentation-plugin) within it!_

_**Note**: It is important to **not** run Maven's `clean` lifecycle when executing the `assemble` profile._
Expand All @@ -141,7 +141,7 @@ The [<ins>SpecialAgent</ins>](#41-specialagent) uses [Java’s Instrumentation m
Statically attaching to a Java application involves the use of the `-javaagent` vm argument at the time of startup of the target Java application. The following command can be used as an example:
```bash
java -javaagent:opentracing-specialagent-1.2.0.jar -jar myapp.jar
java -javaagent:opentracing-specialagent-1.3.0.jar -jar myapp.jar
```
This command statically attaches [<ins>SpecialAgent</ins>](#41-specialagent) into the application in `myapp.jar`.
Expand All @@ -157,12 +157,12 @@ Dynamically attaching to a Java application involves the use of a running applic
1. For jdk1.8
```bash
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.2.0.jar <PID>
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.3.0.jar <PID>
```
1. For jdk9+
```bash
java -jar opentracing-specialagent-1.2.0.jar <PID>
java -jar opentracing-specialagent-1.3.0.jar <PID>
```
## 3 Configuration
Expand Down Expand Up @@ -356,6 +356,7 @@ The following plugins have [<ins>Instrumentation Rules</ins>](#45-instrumentatio
1. [Hystrix](https://github.com/OpenFeign/feign-opentracing/tree/master/feign-hystrix-opentracing)
1. [Zuul](https://github.com/opentracing-contrib/java-spring-cloud/tree/master/instrument-starters/opentracing-spring-cloud-zuul-starter)
1. [Spring @Async and @Scheduled](https://github.com/opentracing-contrib/java-spring-cloud/tree/master/instrument-starters/opentracing-spring-cloud-core)
1. [Spring Messaging](https://github.com/opentracing-contrib/java-spring-messaging)

### 6.2 [<ins>Tracer Plugins</ins>](#43-tracer-plugin)

Expand Down Expand Up @@ -412,12 +413,12 @@ This project is licensed under the Apache 2 License - see the [LICENSE.txt](LICE
[java-jdbc]: https://github.com/opentracing-contrib/java-jdbc
[java-jms]: https://github.com/opentracing-contrib/java-jms
[java-okhttp]: https://github.com/opentracing-contrib/java-okhttp
[main-release]: http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.2.0/opentracing-specialagent-1.2.0.jar
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.2.1-SNAPSHOT
[main-release]: http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.3.0/opentracing-specialagent-1.3.0.jar
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.3.1-SNAPSHOT
[opentracing-contrib]: https://github.com/opentracing-contrib/
[specialagent-jdbc]: https://github.com/opentracing-contrib/java-specialagent/tree/master/rules/specialagent-jdbc
[specialagent-jms-1]: https://github.com/opentracing-contrib/java-specialagent/tree/master/rules/specialagent-jms-1
[specialagent-jms-2]: https://github.com/opentracing-contrib/java-specialagent/tree/master/rules/specialagent-jms-2
[specialagent-okhttp]: https://github.com/opentracing-contrib/java-specialagent/tree/master/rules/specialagent-okhttp
[test-release]: http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.1.0/opentracing-specialagent-1.1.0-tests.jar
[test-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.2.1-SNAPSHOT
[test-release]: http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.3.0/opentracing-specialagent-1.3.0-tests.jar
[test-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.3.1-SNAPSHOT
2 changes: 1 addition & 1 deletion agentrule-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>agentrule-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion assemble-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>assemble-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion fingerprint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>fingerprint</artifactId>
<name>Fingerprint Utility for SpecialAgent</name>
Expand Down
6 changes: 3 additions & 3 deletions opentracing-specialagent-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ The <ins>SpecialAgent Rule API</ins> is intended to be integrated into an OpenTr
<dependency>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>opentracing-specialagent-api</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -158,7 +158,7 @@ The `AgentRunner` is available in the test jar of the <ins>SpecialAgent</ins> mo
<dependency>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>opentracing-specialagent</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -232,7 +232,7 @@ The <ins>SpecialAgent</ins> has specific requirements for packaging of <ins>Inst
<plugin>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>agentrule-maven-plugin</artifactId>
<version>1.2.0</version>
<version>1.3.0</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion opentracing-specialagent-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>opentracing-specialagent-api</artifactId>
<name>OpenTracing SpecialAgent API</name>
Expand Down
2 changes: 1 addition & 1 deletion opentracing-specialagent-util/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>opentracing-specialagent-util</artifactId>
<name>Utilities for SpecialAgent</name>
Expand Down
20 changes: 10 additions & 10 deletions opentracing-specialagent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>opentracing-specialagent</artifactId>
<name>OpenTracing SpecialAgent</name>
Expand Down Expand Up @@ -227,21 +227,21 @@
<scope>provided</scope>
</dependency>
<!--dependency>
<groupId>io.opentracing.contrib</groupId>
<artifactId>opentracing-grizzly-http-server</artifactId>
<version>0.1.0</version>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>specialagent-grizzly-ahc</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.opentracing.contrib</groupId>
<artifactId>opentracing-grizzly-ahc</artifactId>
<version>0.1.0</version>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>specialagent-grizzly-http-server</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.opentracing.contrib</groupId>
<artifactId>opentracing-reactor</artifactId>
<version>0.1.0</version>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>specialagent-grizzly-reactor</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency-->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
<packaging>pom</packaging>
<name>Java SpecialAgent</name>
<description>Java Agent for OpenTracing, with automatic instrumentation</description>
Expand Down
5 changes: 4 additions & 1 deletion rules/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
Expand Down Expand Up @@ -65,6 +65,9 @@
<module>specialagent-spring-websocket</module>
<module>specialagent-spring-jms</module>
<module>specialagent-spring-messaging</module>
<!--module>specialagent-grizzly-ahc</module>
<module>specialagent-grizzly-http-server</module>
<module>specialagent-reactor</module-->
</modules>
<profiles>
<profile>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-apache-httpclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-apache-httpclient</artifactId>
<name>SpecialAgent Rule for Apache HttpClient</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-asynchttpclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-asynchttpclient</artifactId>
<name>SpecialAgent Rule for AsyncHttpClient</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-aws-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-aws-sdk</artifactId>
<name>SpecialAgent Rule for AWS SDK</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-camel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-camel</artifactId>
<name>SpecialAgent Rule for Apache Camel</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-cassandra-driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-cassandra-driver</artifactId>
<name>SpecialAgent Rule for Cassandra Driver</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-concurrent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-concurrent</artifactId>
<name>SpecialAgent Rule for Java Concurrent</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-elasticsearch-client-6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-elasticsearch-client-6</artifactId>
<name>SpecialAgent Rule for Elasticsearch 6 Client</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-feign/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-feign</artifactId>
<name>SpecialAgent Rule for Feign</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-grpc</artifactId>
<name>SpecialAgent Rule for GRPC</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-hazelcast/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-hazelcast</artifactId>
<name>SpecialAgent Rule for Hazelcast</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-hystrix/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-hystrix</artifactId>
<name>SpecialAgent Rule for Hystrix</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-jdbc</artifactId>
<name>SpecialAgent Rule for JDBC</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-jdbi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-jdbi</artifactId>
<name>SpecialAgent Rule for JDBI 3</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-jedis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-jedis</artifactId>
<name>SpecialAgent Rule for Jedis</name>
Expand Down
2 changes: 1 addition & 1 deletion rules/specialagent-jms-1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rules</groupId>
<artifactId>rules</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.3.0</version>
</parent>
<artifactId>specialagent-jms-1</artifactId>
<name>SpecialAgent Rule for JMS 1</name>
Expand Down
Loading

0 comments on commit 96078f4

Please sign in to comment.