Skip to content

Commit 49ab40d

Browse files
committed
Release v1.6.0, re #491
1 parent ea08059 commit 49ab40d

File tree

266 files changed

+296
-283
lines changed

Some content is hidden

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

266 files changed

+296
-283
lines changed

CHANGELOG.md

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

3+
## v1.6.0 (2020-03-14)
4+
* [Rewritable Tracer](https://github.com/opentracing-contrib/java-specialagent#37-rewritable-tracer) (#407 #415 #437 #479 #486)
5+
* Support "optional deferrable" rule attibute (#445)
6+
* Static Deferred Attach: Fix spring-kafka (#461)
7+
* Static Deferred Attach: Fix spring-messaging (#460 #470)
8+
* Static Deferred Attach: Fix spring-websocket (#474 #478)
9+
* Static Deferred Attach: Fix spring-messaging and spring-kafka (#481)
10+
* Auto-Compatibility Test: Auto-assert compatibility of instrumentation plugins (#462)
11+
* Auto-Compatibility Test: Support multiple pass/fail compatibility specs (#469)
12+
* Auto-Compatibility Test: Support complex pass/fail compatibility specs (#472)
13+
* Fix generated classes in Thrift rule (#489)
14+
* [Implement Apache CXF Instrumentation Plugin](https://github.com/opentracing-contrib/java-specialagent/tree/master/rule/cxf) (#476)
15+
316
## v1.5.9 (2020-02-28)
417
* Enable Static Deferred Attach for `spring-kafka` integration test (#425)
518
* Fix failing Pulsar Functions integration test (#418)

README.md

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

7272
### 2.1 Installation
7373

74-
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](https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.9/).
74+
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](https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.6.0/).
7575

7676
#### 2.1.1 In Application
7777

@@ -83,31 +83,31 @@ The artifact JAR can be provided to an application with the `-javaagent:${SPECIA
8383

8484
##### 2.1.1.1 Stable
8585

86-
The latest stable release is: [1.5.9][main-release]
86+
The latest stable release is: [1.6.0][main-release]
8787

8888
```bash
89-
wget -O opentracing-specialagent-1.5.9.jar "https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.9/opentracing-specialagent-1.5.9.jar"
89+
wget -O opentracing-specialagent-1.6.0.jar "https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.6.0/opentracing-specialagent-1.6.0.jar"
9090
```
9191

9292
##### 2.1.1.2 Development
9393

94-
The latest development release is: [1.6.0-SNAPSHOT][main-snapshot]
94+
The latest development release is: [1.6.1-SNAPSHOT][main-snapshot]
9595

9696
```bash
97-
wget -O opentracing-specialagent-1.6.0-SNAPSHOT.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=io.opentracing.contrib.specialagent&a=opentracing-specialagent&v=LATEST"
97+
wget -O opentracing-specialagent-1.6.1-SNAPSHOT.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=io.opentracing.contrib.specialagent&a=opentracing-specialagent&v=LATEST"
9898
```
9999

100100
**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):
101101

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

106106
#### 2.1.2 For Development
107107

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

110-
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.9.jar`][main-release]
110+
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.6.0.jar`][main-release]
111111

112112
To run this profile:
113113
```bash
@@ -116,9 +116,9 @@ The [<ins>SpecialAgent</ins>](#41-specialagent) is built in 2 passes that rely o
116116

117117
_**Note**: If you skip tests, the `assemble` profile will display an error stating that tests have not been run. See [Convenient One-Liners](#convenient-one-liners) for quick ways to build and package [<ins>SpecialAgent</ins>](#41-specialagent)_.
118118

119-
1. The `assemble` profile is used to bundle the [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule) into [`opentracing-specialagent-1.5.9.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.9.jar`][main-release] will contain the built rules inside it.
119+
1. The `assemble` profile is used to bundle the [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule) into [`opentracing-specialagent-1.6.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.6.0.jar`][main-release] will contain the built rules inside it.
120120

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

123123
_**Note**: It is important to **not** run Maven's `clean` lifecycle when executing the `assemble` profile._
124124
@@ -161,13 +161,13 @@ For development of [<ins>Instrumentation Plugins</ins>](#44-instrumentation-plug
161161
<dependency>
162162
<groupId>io.opentracing.contrib.specialagent</groupId>
163163
<artifactId>opentracing-specialagent-api</artifactId>
164-
<version>1.5.9</version> <!--version>1.6.0-SNAPSHOT<version-->
164+
<version>1.6.0</version> <!--version>1.6.1-SNAPSHOT<version-->
165165
<scope>provided</scope>
166166
</dependency>
167167
<dependency>
168168
<groupId>io.opentracing.contrib.specialagent</groupId>
169169
<artifactId>opentracing-specialagent</artifactId>
170-
<version>1.5.9</version> <!--version>1.6.0-SNAPSHOT<version-->
170+
<version>1.6.0</version> <!--version>1.6.1-SNAPSHOT<version-->
171171
<type>test-jar</type>
172172
<scope>test</scope>
173173
</dependency>
@@ -223,7 +223,7 @@ With [<ins>Static Attach</ins>](#221-static-attach), the application is executed
223223
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:
224224
225225
```bash
226-
java -javaagent:opentracing-specialagent-1.5.9.jar -jar MyApp.jar
226+
java -javaagent:opentracing-specialagent-1.6.0.jar -jar MyApp.jar
227227
```
228228
229229
This command statically attaches [<ins>SpecialAgent</ins>](#41-specialagent) into the application in `MyApp.jar`.
@@ -242,12 +242,12 @@ Dynamically attaching to a Java application involves the use of a running applic
242242
1. To attach to the target `PID`:
243243
* For jdk1.8
244244
```bash
245-
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.5.9.jar <PID>
245+
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.6.0.jar <PID>
246246
```
247247

248248
* For jdk9+
249249
```bash
250-
java -jar opentracing-specialagent-1.5.9.jar <PID>
250+
java -jar opentracing-specialagent-1.6.0.jar <PID>
251251
```
252252

253253
**Note:** Properties that are provided in the command to dynamically attach will be absorbed by the target application. This applies to properties specific to SpecialAgent, such as `-Dsa.log.level=FINER`, as well as other properties such as `-Djava.util.logging.config.file=out.log`.
@@ -274,7 +274,7 @@ If the above supported application environment is detected, <ins>Static Deferred
274274
The following command can be used as an example:
275275

276276
```bash
277-
java -javaagent:opentracing-specialagent-1.5.9.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
277+
java -javaagent:opentracing-specialagent-1.6.0.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
278278
```
279279

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

778-
[main-release]: https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.9/opentracing-specialagent-1.5.9.jar
779-
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.6.0-SNAPSHOT
778+
[main-release]: https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.6.0/opentracing-specialagent-1.6.0.jar
779+
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.6.1-SNAPSHOT

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>agentrule-maven-plugin</artifactId>
2727
<packaging>maven-plugin</packaging>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>assemble-maven-plugin</artifactId>
2727
<packaging>maven-plugin</packaging>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>fingerprint</artifactId>
2727
<name>Fingerprint Utility for SpecialAgent</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>itest-maven-plugin</artifactId>
2727
<packaging>maven-plugin</packaging>

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.9</version>
53+
<version>1.6.0</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.9</version>
161+
<version>1.6.0</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.9</version>
238+
<version>1.6.0</version>
239239
<executions>
240240
<execution>
241241
<goals>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>opentracing-specialagent-api</artifactId>
2727
<name>OpenTracing SpecialAgent API</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>opentracing-specialagent-util</artifactId>
2727
<name>Utilities for SpecialAgent</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>opentracing-specialagent</artifactId>
2727
<name>OpenTracing SpecialAgent</name>

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.6.0-SNAPSHOT</version>
23+
<version>1.6.0</version>
2424
<packaging>pom</packaging>
2525
<name>Java SpecialAgent</name>
2626
<description>Java Agent for OpenTracing, with automatic instrumentation</description>

rewrite/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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>rewrite</artifactId>
2727
<name>Rewritable Tracer for SpecialAgent</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>akka-actor</artifactId>
2727
<name>SpecialAgent Rule for Akka Actor</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>akka-http</artifactId>
2727
<name>SpecialAgent Rule for Akka Http</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>apache-httpclient</artifactId>
2727
<name>SpecialAgent Rule for Apache HttpClient</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>asynchttpclient</artifactId>
2727
<name>SpecialAgent Rule for AsyncHttpClient</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>aws-sdk-1</artifactId>
2727
<name>SpecialAgent Rule for AWS SDK v1</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>aws-sdk-2</artifactId>
2727
<name>SpecialAgent Rule for AWS SDK v2</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>camel</artifactId>
2727
<name>SpecialAgent Rule for Apache Camel</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>cassandra-driver-3</artifactId>
2727
<name>SpecialAgent Rule for Cassandra 3 Driver</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>cassandra-driver-4</artifactId>
2727
<name>SpecialAgent Rule for Cassandra 4 Driver</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>concurrent</artifactId>
2727
<name>SpecialAgent Rule for Java Concurrent API</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>couchbase-client</artifactId>
2727
<name>SpecialAgent Rule for Couchbase Client</name>

rule/cxf/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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>cxf</artifactId>
2727
<name>SpecialAgent Rule for Apache CXF</name>

rule/dynamic/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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>dynamic</artifactId>
2727
<name>SpecialAgent Rule for Dynamic Instrumentation</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>elasticsearch-client-rest</artifactId>
2727
<name>SpecialAgent Rule for Elasticsearch Rest Client</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>elasticsearch-client-transport</artifactId>
2727
<name>SpecialAgent Rule for Elasticsearch Transport Client</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>feign</artifactId>
2727
<name>SpecialAgent Rule for Feign</name>

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.6.0-SNAPSHOT</version>
24+
<version>1.6.0</version>
2525
</parent>
2626
<artifactId>google-http-client</artifactId>
2727
<name>SpecialAgent Rule for Google Http Client</name>

0 commit comments

Comments
 (0)