Skip to content

Commit b1b418d

Browse files
committed
Release v1.7.2, re #562
1 parent 3eab7b3 commit b1b418d

File tree

274 files changed

+302
-293
lines changed

Some content is hidden

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

274 files changed

+302
-293
lines changed

CHANGELOG.md

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

3+
## v1.7.2 (2020-05-03)
4+
* Make CI/CD stable, and reduce time for releases and PR checks (#538 #539)
5+
* Prefer compiled invocation rather than via reflection in `servlet` rule (#547)
6+
* Fix to `sparkjava` integration test failing (#560 #561)
7+
* Fix to `ZuulITest` failure with span not error (#558 #559)
8+
* Remove "unchained" agent rule `spring-web-*` in favor of `HttpUrlConnection` (improved startup performance) (#556 #557)
9+
* Merge all "unchained" `spring-webmvc-*` rules into one "chained" `spring-webmvc` (improved startup performance) (#553 #554)
10+
* [Chain rules in `BootLoaderAgent`](https://github.com/opentracing-contrib/java-specialagent/commit/040bbe07bd85310681442756e369f9c437bd06b9) (improved startup performance)
11+
312
## v1.7.1 (2020-04-19)
413
* Fix `Span.KIND` for `apache:httpclient` rule (#550) 👈 Thank you @zeitlinger
514
* Install Memcached for integration testing in Circle CI (#545)

README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The <ins>SpecialAgent</ins> is stable -- any exception that occurs during attach
7676

7777
### 2.1 Installation
7878

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

8181
#### 2.1.1 In Application
8282

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

8989
##### 2.1.1.1 Stable
9090

91-
The latest stable release is: [1.7.1][main-release]
91+
The latest stable release is: [1.7.2][main-release]
9292

9393
```bash
94-
wget -O opentracing-specialagent-1.7.1.jar "https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.1/opentracing-specialagent-1.7.1.jar"
94+
wget -O opentracing-specialagent-1.7.2.jar "https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.2/opentracing-specialagent-1.7.2.jar"
9595
```
9696

9797
##### 2.1.1.2 Development
9898

99-
The latest development release is: [1.7.2-SNAPSHOT][main-snapshot]
99+
The latest development release is: [1.7.3-SNAPSHOT][main-snapshot]
100100

101101
```bash
102-
wget -O opentracing-specialagent-1.7.2-SNAPSHOT.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=io.opentracing.contrib.specialagent&a=opentracing-specialagent&v=LATEST"
102+
wget -O opentracing-specialagent-1.7.3-SNAPSHOT.jar "https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=io.opentracing.contrib.specialagent&a=opentracing-specialagent&v=LATEST"
103103
```
104104

105105
**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):
106106

107107
```bash
108-
wget -O opentracing-specialagent-1.7.2-SNAPSHOT.jar $(curl -s https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.2-SNAPSHOT/ | grep '".*\d\.jar"' | tail -1 | awk -F\" '{print $2}')
108+
wget -O opentracing-specialagent-1.7.3-SNAPSHOT.jar $(curl -s https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.3-SNAPSHOT/ | grep '".*\d\.jar"' | tail -1 | awk -F\" '{print $2}')
109109
```
110110

111111
#### 2.1.2 For Development
112112

113113
The <ins>SpecialAgent</ins> is built in 2 passes utilizing different profiles:
114114

115-
1. The `default` profile is used for development of <ins>[Integration Rules](#64-integration-rule)</ins>. It builds and runs tests for each rule, but _does not bundle the rules_ into the main JAR (i.e. `opentracing-specialagent-1.7.2-SNAPSHOT.jar`).
115+
1. The `default` profile is used for development of <ins>[Integration Rules](#64-integration-rule)</ins>. It builds and runs tests for each rule, but _does not bundle the rules_ into the main JAR (i.e. `opentracing-specialagent-1.7.3-SNAPSHOT.jar`).
116116

117117
To run this profile:
118118
```bash
@@ -121,9 +121,9 @@ The <ins>SpecialAgent</ins> is built in 2 passes utilizing different profiles:
121121

122122
_**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>_.
123123

124-
1. The `assemble` profile is used to bundle the <ins>[Integrations](#64-integration-rule)</ins> into the main JAR (i.e. `opentracing-specialagent-1.7.2-SNAPSHOT.jar`). It builds each rule, but _does not run tests._ Once the build with the `assemble` profile is finished, the main JAR (i.e. `opentracing-specialagent-1.7.2-SNAPSHOT.jar`) will contain the built rules inside it.
124+
1. The `assemble` profile is used to bundle the <ins>[Integrations](#64-integration-rule)</ins> into the main JAR (i.e. `opentracing-specialagent-1.7.3-SNAPSHOT.jar`). It builds each rule, but _does not run tests._ Once the build with the `assemble` profile is finished, the main JAR (i.e. `opentracing-specialagent-1.7.3-SNAPSHOT.jar`) will contain the built rules inside it.
125125

126-
_**Note**: If you do not run this step, the `opentracing-specialagent-1.7.2-SNAPSHOT.jar` from the previous step will not contain any <ins>[Integrations](#63-integration)</ins>!_
126+
_**Note**: If you do not run this step, the `opentracing-specialagent-1.7.3-SNAPSHOT.jar` from the previous step will not contain any <ins>[Integrations](#63-integration)</ins>!_
127127

128128
_**Note**: It is important to **not** run Maven's `clean` lifecycle when executing the `assemble` profile, otherwise the <ins>[Integrations](#63-integration)</ins> built in with the `default` profile will be cleared._
129129

@@ -186,7 +186,7 @@ For development of <ins>[Integration Rules](#64-integration-rule)</ins>, import
186186

187187
```xml
188188
<properties>
189-
<special-agent-version>1.7.1</special-agent-version> <!-- 1.7.2-SNAPSHOT -->
189+
<special-agent-version>1.7.2</special-agent-version> <!-- 1.7.3-SNAPSHOT -->
190190
</properties>
191191
...
192192
<dependency>
@@ -274,7 +274,7 @@ With <ins>[Static Attach](#221-static-attach)</ins>, the application is executed
274274
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:
275275

276276
```bash
277-
java -javaagent:opentracing-specialagent-1.7.1.jar -jar MyApp.jar
277+
java -javaagent:opentracing-specialagent-1.7.2.jar -jar MyApp.jar
278278
```
279279

280280
This command statically attaches <ins>SpecialAgent</ins> to the application in `MyApp.jar`.
@@ -293,12 +293,12 @@ Dynamically attaching to a Java application involves the use of a running applic
293293
1. To attach to the target `PID`:
294294
* For jdk1.8
295295
```bash
296-
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.7.1.jar ${PID}
296+
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.7.2.jar ${PID}
297297
```
298298

299299
* For jdk9+
300300
```bash
301-
java -jar opentracing-specialagent-1.7.1.jar ${PID}
301+
java -jar opentracing-specialagent-1.7.2.jar ${PID}
302302
```
303303

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

327327
```bash
328-
java -javaagent:opentracing-specialagent-1.7.1.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
328+
java -javaagent:opentracing-specialagent-1.7.2.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
329329
```
330330

331331
## 3 Configuration
@@ -566,7 +566,7 @@ For the development of <ins>[Integration Rules](#64-integration-rule)</ins>, ple
566566
| Google Http Client | [`google-http-client`][google-http-client] | 1.19.0 | LATEST |
567567
| [Grizzly AsyncHttpClient](https://github.com/opentracing-contrib/java-grizzly-ahc) | [`grizzly:ahc`][grizzly-ahc] | 1.15 | LATEST |
568568
| [Grizzly HTTP Server](https://github.com/opentracing-contrib/java-grizzly-http-server) | [`grizzly:http-server`][grizzly-http-server] | 2.3.35 | LATEST |
569-
| [GRPC](https://github.com/opentracing-contrib/java-grpc) | [`grpc`][grpc] | 1.7.1 | LATEST |
569+
| [GRPC](https://github.com/opentracing-contrib/java-grpc) | [`grpc`][grpc] | 1.7.2 | LATEST |
570570
| [Hazelcast](https://github.com/opentracing-contrib/opentracing-hazelcast) | [`hazelcast`][hazelcast] | 3.12 | 3.12.6 |
571571
| [Java Concurrent API \[`java.util.concurrent`\]](https://github.com/opentracing-contrib/java-concurrent) | [`concurrent`][concurrent] | 1.5 | 11 |
572572
| [Java JDBC API \[`java.sql`\]][java-jdbc]<br>&nbsp; | [`jdbc`<br><sup>(configurable)</sup>][jdbc] | 3.1<br>&nbsp; | 4.3<br>&nbsp; |
@@ -816,5 +816,5 @@ This project is licensed under the Apache 2 License - see the [LICENSE.txt](LICE
816816
[specialagent-pom]: https://github.com/opentracing-contrib/java-specialagent/blob/master/pom.xml
817817
[circleci]: https://circleci.com/gh/opentracing-contrib/java-specialagent/tree/master
818818
819-
[main-release]: https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.1/opentracing-specialagent-1.7.1.jar
820-
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.2-SNAPSHOT
819+
[main-release]: https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.2/opentracing-specialagent-1.7.2.jar
820+
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.3-SNAPSHOT

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

opentracing-adapter/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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</version>
2525
</parent>
2626
<artifactId>opentracing-adapter</artifactId>
2727
<name>OpenTracing Adapter for SpecialAgent</name>

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

opentracing-specialagent-api/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<samp>&nbsp;&nbsp;</samp>4 [`AgentRule` Usage](#4-agentrule-usage)<br>
1616
<samp>&nbsp;&nbsp;</samp>5 [`AgentRunner` Usage](#5-agentrunner-usage)<br>
1717
<samp>&nbsp;&nbsp;&nbsp;&nbsp;</samp>5.1 [Configuring `AgentRunner`](#51-configuring-agentrunner)<br>
18-
<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</samp>6 [Packaging](#6-packaging)<br>
19-
<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</samp>6.1 [Including the <ins>Integration Rule</ins> in the <ins>SpecialAgent</ins>](#61-including-the-integration-rule-in-the-specialagent)<br>
18+
<samp>&nbsp;&nbsp;</samp>6 [Packaging](#6-packaging)<br>
19+
<samp>&nbsp;&nbsp;&nbsp;&nbsp;</samp>6.1 [Including the <ins>Integration Rule</ins> in the <ins>SpecialAgent</ins>](#61-including-the-integration-rule-in-the-specialagent)<br>
2020
<samp>&nbsp;&nbsp;</samp>7 [Compatibility Testing](#7-compatibility-testing)<br>
2121
<samp>&nbsp;&nbsp;</samp>8 [Integration Testing](#8-integration-testing)<br>
2222
<samp>&nbsp;&nbsp;</samp>9 [Debugging](#9-debugging)<br>
@@ -262,7 +262,7 @@ The <ins>SpecialAgent</ins> has specific requirements for packaging of <ins>Inte
262262
<plugin>
263263
<groupId>io.opentracing.contrib.specialagent</groupId>
264264
<artifactId>specialagent-maven-plugin</artifactId>
265-
<version>1.7.1</version> <!-- 1.7.2-SNAPSHOT -->
265+
<version>1.7.2</version> <!-- 1.7.3-SNAPSHOT -->
266266
<executions>
267267
<execution>
268268
<id>fingerprint</id>
@@ -307,7 +307,7 @@ The <ins>SpecialAgent</ins> has specific requirements for packaging of <ins>Inte
307307
<plugin>
308308
<groupId>io.opentracing.contrib.specialagent</groupId>
309309
<artifactId>specialagent-maven-plugin</artifactId>
310-
<version>1.7.1</version> <!-- 1.7.2-SNAPSHOT -->
310+
<version>1.7.2</version> <!-- 1.7.3-SNAPSHOT -->
311311
...
312312
<configuration>
313313
<name>${sa.rule.name}</name>
@@ -365,7 +365,7 @@ The POM of each <ins>Integration Rule</ins> must describe at least one `pass` co
365365
<plugin>
366366
<groupId>io.opentracing.contrib.specialagent</groupId>
367367
<artifactId>specialagent-maven-plugin</artifactId>
368-
<version>1.7.1</version> <!-- 1.7.2-SNAPSHOT -->
368+
<version>1.7.2</version> <!-- 1.7.3-SNAPSHOT -->
369369
<executions>
370370
...
371371
<execution>

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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</version>
2525
</parent>
2626
<artifactId>opentracing-specialagent-util</artifactId>
2727
<name>OpenTracing SpecialAgent Utilities</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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</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.7.2-SNAPSHOT</version>
23+
<version>1.7.2</version>
2424
<packaging>pom</packaging>
2525
<name>Java SpecialAgent</name>
2626
<description>Java Agent for OpenTracing, with automatic instrumentation</description>

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

rule/dubbo-2.6/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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</version>
2525
</parent>
2626
<artifactId>dubbo-2.6</artifactId>
2727
<name>SpecialAgent Rule for Dubbo 2.6</name>

rule/dubbo-2.7/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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</version>
2525
</parent>
2626
<artifactId>dubbo-2.7</artifactId>
2727
<name>SpecialAgent Rule for Dubbo 2.7</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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</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.7.2-SNAPSHOT</version>
24+
<version>1.7.2</version>
2525
</parent>
2626
<artifactId>feign</artifactId>
2727
<name>SpecialAgent Rule for Feign</name>

0 commit comments

Comments
 (0)