Skip to content

Commit 4e0b85f

Browse files
committed
Release v1.5.7, re #383
1 parent b70c9c4 commit 4e0b85f

File tree

248 files changed

+291
-265
lines changed

Some content is hidden

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

248 files changed

+291
-265
lines changed

CHANGELOG.md

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

3+
## v1.5.7 (2020-02-01)
4+
* Improve intercept logging (#385)
5+
* Improve test coverage for init patterns (#342)
6+
* Fix download links in README.md (#386)
7+
* Make `TracedMessage` distributable (#380)
8+
* Fix Static Deferred Attach for Spring Boot based apps (#379)
9+
* Determine libs transitively supported by existing instrumentation task (#329)
10+
* Implement integration tests for transitively supported libs (#330)
11+
* Add integration tests for Ratpack (#378)
12+
* Add integration tests for SparkJava (#373)
13+
* Add integration tests for Twilio (#371)
14+
* Fix `NoSuchMethodException: TracingFilter.buildSpan(...)` (#369)
15+
* Use `WrapperProxy` from "io.opentracing.contrib:common" (#374)
16+
* Implement [Dynamic Instrumentation Rule](https://github.com/opentracing-contrib/java-specialagent/tree/master/rule/dynamic/) (#375)
17+
* Fix "object is not an instance of declaring class" resulting from `DynamicProxy` (#368)
18+
* Fix incorrect return from `PluginManifest.getPluginManifest` when called from `AgentRunner` (#372)
19+
* Fix different span behavior for Spring WebMVC with Static Deferred Attach (#358)
20+
* Make `JmsTest` in JMS-2 more stable (#364)
21+
* Allow Static Deferred Attach to work with Spring Boot apps built with `spring-boot-maven-plugin` (#362)
22+
* Add support for global tags when using LightStep Tracer (#320)
23+
* Update `SpecialAgentUtil.convertToNameRegex(...)` to match name literals (i.e. "spring:boot") (#363)
24+
* Update Instrumentation Plugins (#387)
25+
* Tokenize `${sa.itest.args}` in `itest-maven-plugin` to (#388)
26+
* Fix `VerifyError: "Illegal type in constant pool"` due to `isEnabled(Class,String)` (#389)
27+
* Fix Static Deferred Attach initializing Spring Boot too early (#367)
28+
329
## v1.5.6 (2020-01-17)
430
* Improve test module structure (#348)
531
* Use DynamicProxy for all objects instrumented via inheritance pattern (#359)

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](https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.6/).
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](https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.7/).
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.6][main-release]
85+
The latest stable release is: [1.5.7][main-release]
8686

8787
```bash
88-
wget -O opentracing-specialagent-1.5.6.jar "https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.6/opentracing-specialagent-1.5.6.jar"
88+
wget -O opentracing-specialagent-1.5.7.jar "https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.7/opentracing-specialagent-1.5.7.jar"
8989
```
9090

9191
##### 2.1.1.2 Development
9292

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

9595
```bash
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"
96+
wget -O opentracing-specialagent-1.5.8-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.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}')
102+
wget -O opentracing-specialagent-1.5.8-SNAPSHOT.jar $(curl -s https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.8-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.6.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.7.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.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.
116+
1. The `assemble` profile is used to bundle the [<ins>Instrumentation Rules</ins>](#45-instrumentation-rule) into [`opentracing-specialagent-1.5.7.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.7.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.6.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.7.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.6</version> <!--version>1.5.7-SNAPSHOT<version-->
141+
<version>1.5.7</version> <!--version>1.5.8-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.6</version> <!--version>1.5.7-SNAPSHOT<version-->
147+
<version>1.5.7</version> <!--version>1.5.8-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.6.jar -jar MyApp.jar
203+
java -javaagent:opentracing-specialagent-1.5.7.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.6.jar <PID>
222+
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.5.7.jar <PID>
223223
```
224224

225225
* For jdk9+
226226
```bash
227-
java -jar opentracing-specialagent-1.5.6.jar <PID>
227+
java -jar opentracing-specialagent-1.5.7.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.6.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
252+
java -javaagent:opentracing-specialagent-1.5.7.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
253253
```
254254

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

689-
[main-release]: https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.6/opentracing-specialagent-1.5.6.jar
690-
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.7-SNAPSHOT
689+
[main-release]: https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.7/opentracing-specialagent-1.5.7.jar
690+
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.5.8-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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.6</version>
53+
<version>1.5.7</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.6</version>
161+
<version>1.5.7</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.6</version>
238+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
23+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</version>
2525
</parent>
2626
<artifactId>aws-sdk-1</artifactId>
2727
<name>SpecialAgent Rule for AWS SDK 1</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</version>
2525
</parent>
2626
<artifactId>aws-sdk-2</artifactId>
2727
<name>SpecialAgent Rule for AWS SDK 2</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</version>
2525
</parent>
2626
<artifactId>couchbase-client</artifactId>
2727
<name>SpecialAgent Rule for Couchbase Client</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</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.5.7-SNAPSHOT</version>
24+
<version>1.5.7</version>
2525
</parent>
2626
<artifactId>google-http-client</artifactId>
2727
<name>SpecialAgent Rule for Google Http Client</name>

0 commit comments

Comments
 (0)