Skip to content

Commit 7f8548b

Browse files
committed
Release v1.5.6, re #360
1 parent e7ba60e commit 7f8548b

File tree

237 files changed

+261
-254
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+261
-254
lines changed

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changes by Version
22

3+
## v1.5.6 (2020-01-17)
4+
* Improve test module structure (#348)
5+
* Use DynamicProxy for all objects instrumented via inheritance pattern (#359)
6+
* Update `CouchbaseClientTest` to resemble `CouchbaseClientITest` (#352)
7+
* Static deferred attach is unavailable (#356)
8+
* Upgrade JDBC Plugin to v0.2.7
9+
310
## v1.5.5 (2020-01-10)
411
* Implement AgentRule(s) for Neo4J Driver (#321)
512
* Implement AgentRule(s) for Netty (#318)

Diff for: README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The [<ins>SpecialAgent</ins>](#41-specialagent) is stable -- any exception that
7070

7171
### 2.1 Installation
7272

73-
The Maven build of the [<ins>SpecialAgent</ins>](#41-specialagent) project generates 2 artifacts: **main** and **test**. These artifacts can be obtained by cloning this repository and following the [Development Instructions](#212-for-development), or downloading directly from [Maven's Central Repository](http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.5/).
73+
The Maven build of the [<ins>SpecialAgent</ins>](#41-specialagent) project generates 2 artifacts: **main** and **test**. These artifacts can be obtained by cloning this repository and following the [Development Instructions](#212-for-development), or downloading directly from [Maven's Central Repository](http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.6/).
7474

7575
#### 2.1.1 In Application
7676

@@ -82,40 +82,40 @@ The artifact JAR can be provided to an application with the `-javaagent:${SPECIA
8282

8383
##### 2.1.1.1 Stable
8484

85-
The latest stable release is: [1.5.5][main-release]
85+
The latest stable release is: [1.5.6][main-release]
8686

8787
```bash
88-
wget -O opentracing-specialagent-1.5.5.jar "http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.5/opentracing-specialagent-1.5.5.jar"
88+
wget -O opentracing-specialagent-1.5.6.jar "http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.6/opentracing-specialagent-1.5.6.jar"
8989
```
9090

9191
##### 2.1.1.2 Development
9292

93-
The latest development release is: [1.5.6-SNAPSHOT][main-snapshot]
93+
The latest development release is: [1.5.7-SNAPSHOT][main-snapshot]
9494

9595
```bash
96-
wget -O opentracing-specialagent-1.5.6-SNAPSHOT.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=io.opentracing.contrib.specialagent&a=opentracing-specialagent&v=LATEST"
96+
wget -O opentracing-specialagent-1.5.7-SNAPSHOT.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=io.opentracing.contrib.specialagent&a=opentracing-specialagent&v=LATEST"
9797
```
9898

9999
**Note**: Sometimes the web service call (in the line above) to retrieve the latest SNAPSHOT build fails to deliver the correct download. In order to work around this issue, please consider using the following command (for Linux and Mac OS):
100100

101101
```bash
102-
wget -O opentracing-specialagent-1.5.6-SNAPSHOT.jar $(curl -s https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.6-SNAPSHOT/ | grep '".*\d\.jar"' | tail -1 | awk -F\" '{print $2}')
102+
wget -O opentracing-specialagent-1.5.7-SNAPSHOT.jar $(curl -s https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.7-SNAPSHOT/ | grep '".*\d\.jar"' | tail -1 | awk -F\" '{print $2}')
103103
```
104104

105105
#### 2.1.2 For Development
106106

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

109-
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.5.5.jar`][main-release]
109+
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.5.6.jar`][main-release]
110110

111111
To run this profile:
112112
```bash
113113
mvn clean install
114114
```
115115

116-
1. The `assemble` profile is used to bundle the [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule) into [`opentracing-specialagent-1.5.5.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.5.5.jar`][main-release] will contain the built rules inside it.
116+
1. The `assemble` profile is used to bundle the [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule) into [`opentracing-specialagent-1.5.6.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.5.6.jar`][main-release] will contain the built rules inside it.
117117

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

120120
_**Note**: It is important to **not** run Maven's `clean` lifecycle when executing the `assemble` profile._
121121
@@ -138,13 +138,13 @@ For development of [<ins>Instrumentation Plugins</ins>](#44-instrumentation-plug
138138
<dependency>
139139
<groupId>io.opentracing.contrib.specialagent</groupId>
140140
<artifactId>opentracing-specialagent-api</artifactId>
141-
<version>1.5.5</version> <!--version>1.5.6-SNAPSHOT<version-->
141+
<version>1.5.6</version> <!--version>1.5.7-SNAPSHOT<version-->
142142
<scope>provided</scope>
143143
</dependency>
144144
<dependency>
145145
<groupId>io.opentracing.contrib.specialagent</groupId>
146146
<artifactId>opentracing-specialagent</artifactId>
147-
<version>1.5.5</version> <!--version>1.5.6-SNAPSHOT<version-->
147+
<version>1.5.6</version> <!--version>1.5.7-SNAPSHOT<version-->
148148
<type>test-jar</type>
149149
<scope>test</scope>
150150
</dependency>
@@ -200,7 +200,7 @@ With [<ins>Static Attach</ins>](#221-static-attach), the application is executed
200200
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:
201201
202202
```bash
203-
java -javaagent:opentracing-specialagent-1.5.5.jar -jar MyApp.jar
203+
java -javaagent:opentracing-specialagent-1.5.6.jar -jar MyApp.jar
204204
```
205205
206206
This command statically attaches [<ins>SpecialAgent</ins>](#41-specialagent) into the application in `MyApp.jar`.
@@ -219,12 +219,12 @@ Dynamically attaching to a Java application involves the use of a running applic
219219
1. To attach to the target `PID`:
220220
* For jdk1.8
221221
```bash
222-
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.5.5.jar <PID>
222+
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.5.6.jar <PID>
223223
```
224224

225225
* For jdk9+
226226
```bash
227-
java -jar opentracing-specialagent-1.5.5.jar <PID>
227+
java -jar opentracing-specialagent-1.5.6.jar <PID>
228228
```
229229

230230
**Note:** If you encounter an exception stating `Unable to open socket file`, make sure the attaching VM is executed with the same permissions as the target VM.
@@ -249,7 +249,7 @@ If the above supported application environment is detected, <ins>Static Deferred
249249
The following command can be used as an example:
250250

251251
```bash
252-
java -javaagent:opentracing-specialagent-1.5.5.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
252+
java -javaagent:opentracing-specialagent-1.5.6.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
253253
```
254254

255255
## 3 Configuration
@@ -677,5 +677,5 @@ This project is licensed under the Apache 2 License - see the [LICENSE.txt](LICE
677677
[travis]: https://travis-ci.org/opentracing-contrib/java-specialagent
678678
[specialagent-pom]: https://github.com/opentracing-contrib/java-specialagent/blob/master/pom.xml
679679

680-
[main-release]: http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.5/opentracing-specialagent-1.5.5.jar
681-
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.6-SNAPSHOT
680+
[main-release]: http://central.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.6/opentracing-specialagent-1.5.6.jar
681+
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.7-SNAPSHOT

Diff for: agentrule-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent</groupId>
2323
<artifactId>specialagent</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>agentrule-maven-plugin</artifactId>
2727
<packaging>maven-plugin</packaging>

Diff for: assemble-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent</groupId>
2323
<artifactId>specialagent</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>assemble-maven-plugin</artifactId>
2727
<packaging>maven-plugin</packaging>

Diff for: fingerprint/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent</groupId>
2323
<artifactId>specialagent</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>fingerprint</artifactId>
2727
<name>Fingerprint Utility for SpecialAgent</name>

Diff for: itest-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent</groupId>
2323
<artifactId>specialagent</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>itest-maven-plugin</artifactId>
2727
<packaging>maven-plugin</packaging>

Diff for: opentracing-specialagent-api/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The <ins>SpecialAgent Rule API</ins> is intended to be integrated into an OpenTr
5050
<dependency>
5151
<groupId>io.opentracing.contrib.specialagent</groupId>
5252
<artifactId>opentracing-specialagent-api</artifactId>
53-
<version>1.5.5</version>
53+
<version>1.5.6</version>
5454
<scope>provided</scope>
5555
</dependency>
5656
<dependency>
@@ -158,7 +158,7 @@ The `AgentRunner` is available in the test jar of the <ins>SpecialAgent</ins> mo
158158
<dependency>
159159
<groupId>io.opentracing.contrib.specialagent</groupId>
160160
<artifactId>opentracing-specialagent</artifactId>
161-
<version>1.5.5</version>
161+
<version>1.5.6</version>
162162
<type>test-jar</type>
163163
<scope>test</scope>
164164
</dependency>
@@ -235,7 +235,7 @@ The <ins>SpecialAgent</ins> has specific requirements for packaging of <ins>Inst
235235
<plugin>
236236
<groupId>io.opentracing.contrib.specialagent</groupId>
237237
<artifactId>agentrule-maven-plugin</artifactId>
238-
<version>1.5.5</version>
238+
<version>1.5.6</version>
239239
<executions>
240240
<execution>
241241
<goals>

Diff for: opentracing-specialagent-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent</groupId>
2323
<artifactId>specialagent</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>opentracing-specialagent-api</artifactId>
2727
<name>OpenTracing SpecialAgent API</name>

Diff for: opentracing-specialagent-util/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent</groupId>
2323
<artifactId>specialagent</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>opentracing-specialagent-util</artifactId>
2727
<name>Utilities for SpecialAgent</name>

Diff for: opentracing-specialagent/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent</groupId>
2323
<artifactId>specialagent</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>opentracing-specialagent</artifactId>
2727
<name>OpenTracing SpecialAgent</name>

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<modelVersion>4.0.0</modelVersion>
2121
<groupId>io.opentracing.contrib.specialagent</groupId>
2222
<artifactId>specialagent</artifactId>
23-
<version>1.5.6-SNAPSHOT</version>
23+
<version>1.5.6</version>
2424
<packaging>pom</packaging>
2525
<name>Java SpecialAgent</name>
2626
<description>Java Agent for OpenTracing, with automatic instrumentation</description>

Diff for: rule/akka-actor/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>akka-actor</artifactId>
2727
<name>SpecialAgent Rule for Akka Actor</name>

Diff for: rule/akka-http/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>akka-http</artifactId>
2727
<name>SpecialAgent Rule for Akka Http</name>

Diff for: rule/apache-httpclient/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>apache-httpclient</artifactId>
2727
<name>SpecialAgent Rule for Apache HttpClient</name>

Diff for: rule/asynchttpclient/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>asynchttpclient</artifactId>
2727
<name>SpecialAgent Rule for AsyncHttpClient</name>

Diff for: rule/aws-sdk-1/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>aws-sdk-1</artifactId>
2727
<name>SpecialAgent Rule for AWS SDK 1</name>

Diff for: rule/aws-sdk-2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>aws-sdk-2</artifactId>
2727
<name>SpecialAgent Rule for AWS SDK 2</name>

Diff for: rule/camel/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>camel</artifactId>
2727
<name>SpecialAgent Rule for Apache Camel</name>

Diff for: rule/cassandra-driver-3/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>cassandra-driver-3</artifactId>
2727
<name>SpecialAgent Rule for Cassandra 3 Driver</name>

Diff for: rule/cassandra-driver-4/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>cassandra-driver-4</artifactId>
2727
<name>SpecialAgent Rule for Cassandra 4 Driver</name>

Diff for: rule/concurrent/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>concurrent</artifactId>
2727
<name>SpecialAgent Rule for Java Concurrent API</name>

Diff for: rule/couchbase-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>couchbase-client</artifactId>
2727
<name>SpecialAgent Rule for Couchbase Client</name>

Diff for: rule/elasticsearch-client-rest/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>elasticsearch-client-rest</artifactId>
2727
<name>SpecialAgent Rule for Elasticsearch Rest Client</name>

Diff for: rule/elasticsearch-client-transport/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>elasticsearch-client-transport</artifactId>
2727
<name>SpecialAgent Rule for Elasticsearch Transport Client</name>

Diff for: rule/feign/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>feign</artifactId>
2727
<name>SpecialAgent Rule for Feign</name>

Diff for: rule/google-http-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>google-http-client</artifactId>
2727
<name>SpecialAgent Rule for Google Http Client</name>

Diff for: rule/grizzly-http-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>grizzly-http-client</artifactId>
2727
<name>SpecialAgent Rule for Grizzly Async Http Client</name>

Diff for: rule/grizzly-http-server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>grizzly-http-server</artifactId>
2727
<name>SpecialAgent Rule for Grizzly Http Server</name>

Diff for: rule/grpc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>grpc</artifactId>
2727
<name>SpecialAgent Rule for GRPC</name>

Diff for: rule/hazelcast/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
2323
<artifactId>rule</artifactId>
24-
<version>1.5.6-SNAPSHOT</version>
24+
<version>1.5.6</version>
2525
</parent>
2626
<artifactId>hazelcast</artifactId>
2727
<name>SpecialAgent Rule for Hazelcast</name>

0 commit comments

Comments
 (0)