Skip to content

Commit

Permalink
Release v1.7.2, re #562
Browse files Browse the repository at this point in the history
  • Loading branch information
safris committed May 3, 2020
1 parent 3eab7b3 commit b1b418d
Show file tree
Hide file tree
Showing 274 changed files with 302 additions and 293 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changes by Version

## v1.7.2 (2020-05-03)
* Make CI/CD stable, and reduce time for releases and PR checks (#538 #539)
* Prefer compiled invocation rather than via reflection in `servlet` rule (#547)
* Fix to `sparkjava` integration test failing (#560 #561)
* Fix to `ZuulITest` failure with span not error (#558 #559)
* Remove "unchained" agent rule `spring-web-*` in favor of `HttpUrlConnection` (improved startup performance) (#556 #557)
* Merge all "unchained" `spring-webmvc-*` rules into one "chained" `spring-webmvc` (improved startup performance) (#553 #554)
* [Chain rules in `BootLoaderAgent`](https://github.com/opentracing-contrib/java-specialagent/commit/040bbe07bd85310681442756e369f9c437bd06b9) (improved startup performance)

## v1.7.1 (2020-04-19)
* Fix `Span.KIND` for `apache:httpclient` rule (#550) 👈 Thank you @zeitlinger
* Install Memcached for integration testing in Circle CI (#545)
Expand Down
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The <ins>SpecialAgent</ins> is stable -- any exception that occurs during attach

### 2.1 Installation

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).
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).

#### 2.1.1 In Application

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

##### 2.1.1.1 Stable

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

```bash
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"
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"
```

##### 2.1.1.2 Development

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

```bash
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"
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"
```

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

```bash
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}')
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}')
```

#### 2.1.2 For Development

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

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`).
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`).

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

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

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.
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.

_**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>!_
_**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>!_

_**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._
Expand Down Expand Up @@ -186,7 +186,7 @@ For development of <ins>[Integration Rules](#64-integration-rule)</ins>, import

```xml
<properties>
<special-agent-version>1.7.1</special-agent-version> <!-- 1.7.2-SNAPSHOT -->
<special-agent-version>1.7.2</special-agent-version> <!-- 1.7.3-SNAPSHOT -->
</properties>
...
<dependency>
Expand Down Expand Up @@ -274,7 +274,7 @@ With <ins>[Static Attach](#221-static-attach)</ins>, the application is executed
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.7.1.jar -jar MyApp.jar
java -javaagent:opentracing-specialagent-1.7.2.jar -jar MyApp.jar
```
This command statically attaches <ins>SpecialAgent</ins> to the application in `MyApp.jar`.
Expand All @@ -293,12 +293,12 @@ Dynamically attaching to a Java application involves the use of a running applic
1. To attach to the target `PID`:
* For jdk1.8
```bash
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.7.1.jar ${PID}
java -Xbootclasspath/a:$JAVA_HOME/lib/tools.jar -jar opentracing-specialagent-1.7.2.jar ${PID}
```
* For jdk9+
```bash
java -jar opentracing-specialagent-1.7.1.jar ${PID}
java -jar opentracing-specialagent-1.7.2.jar ${PID}
```
**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`.
Expand All @@ -325,7 +325,7 @@ If the above supported application environment is detected, <ins>Static Deferred
The following command can be used as an example:
```bash
java -javaagent:opentracing-specialagent-1.7.1.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
java -javaagent:opentracing-specialagent-1.7.2.jar -Dsa.init.defer=false -jar MySpringBootApp.jar
```
## 3 Configuration
Expand Down Expand Up @@ -566,7 +566,7 @@ For the development of <ins>[Integration Rules](#64-integration-rule)</ins>, ple
| Google Http Client | [`google-http-client`][google-http-client] | 1.19.0 | LATEST |
| [Grizzly AsyncHttpClient](https://github.com/opentracing-contrib/java-grizzly-ahc) | [`grizzly:ahc`][grizzly-ahc] | 1.15 | LATEST |
| [Grizzly HTTP Server](https://github.com/opentracing-contrib/java-grizzly-http-server) | [`grizzly:http-server`][grizzly-http-server] | 2.3.35 | LATEST |
| [GRPC](https://github.com/opentracing-contrib/java-grpc) | [`grpc`][grpc] | 1.7.1 | LATEST |
| [GRPC](https://github.com/opentracing-contrib/java-grpc) | [`grpc`][grpc] | 1.7.2 | LATEST |
| [Hazelcast](https://github.com/opentracing-contrib/opentracing-hazelcast) | [`hazelcast`][hazelcast] | 3.12 | 3.12.6 |
| [Java Concurrent API \[`java.util.concurrent`\]](https://github.com/opentracing-contrib/java-concurrent) | [`concurrent`][concurrent] | 1.5 | 11 |
| [Java JDBC API \[`java.sql`\]][java-jdbc]<br>&nbsp; | [`jdbc`<br><sup>(configurable)</sup>][jdbc] | 3.1<br>&nbsp; | 4.3<br>&nbsp; |
Expand Down Expand Up @@ -816,5 +816,5 @@ This project is licensed under the Apache 2 License - see the [LICENSE.txt](LICE
[specialagent-pom]: https://github.com/opentracing-contrib/java-specialagent/blob/master/pom.xml
[circleci]: https://circleci.com/gh/opentracing-contrib/java-specialagent/tree/master
[main-release]: https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.1/opentracing-specialagent-1.7.1.jar
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.2-SNAPSHOT
[main-release]: https://repo1.maven.org/maven2/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.2/opentracing-specialagent-1.7.2.jar
[main-snapshot]: https://oss.sonatype.org/content/repositories/snapshots/io/opentracing/contrib/specialagent/opentracing-specialagent/1.7.3-SNAPSHOT
2 changes: 1 addition & 1 deletion itest-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.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>itest-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion opentracing-adapter/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.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>opentracing-adapter</artifactId>
<name>OpenTracing Adapter for SpecialAgent</name>
Expand Down
2 changes: 1 addition & 1 deletion opentracing-rewrite/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.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>opentracing-rewrite</artifactId>
<name>Rewritable Tracer for SpecialAgent</name>
Expand Down
10 changes: 5 additions & 5 deletions opentracing-specialagent-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<samp>&nbsp;&nbsp;</samp>4 [`AgentRule` Usage](#4-agentrule-usage)<br>
<samp>&nbsp;&nbsp;</samp>5 [`AgentRunner` Usage](#5-agentrunner-usage)<br>
<samp>&nbsp;&nbsp;&nbsp;&nbsp;</samp>5.1 [Configuring `AgentRunner`](#51-configuring-agentrunner)<br>
<samp>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</samp>6 [Packaging](#6-packaging)<br>
<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>
<samp>&nbsp;&nbsp;</samp>6 [Packaging](#6-packaging)<br>
<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>
<samp>&nbsp;&nbsp;</samp>7 [Compatibility Testing](#7-compatibility-testing)<br>
<samp>&nbsp;&nbsp;</samp>8 [Integration Testing](#8-integration-testing)<br>
<samp>&nbsp;&nbsp;</samp>9 [Debugging](#9-debugging)<br>
Expand Down Expand Up @@ -262,7 +262,7 @@ The <ins>SpecialAgent</ins> has specific requirements for packaging of <ins>Inte
<plugin>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent-maven-plugin</artifactId>
<version>1.7.1</version> <!-- 1.7.2-SNAPSHOT -->
<version>1.7.2</version> <!-- 1.7.3-SNAPSHOT -->
<executions>
<execution>
<id>fingerprint</id>
Expand Down Expand Up @@ -307,7 +307,7 @@ The <ins>SpecialAgent</ins> has specific requirements for packaging of <ins>Inte
<plugin>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent-maven-plugin</artifactId>
<version>1.7.1</version> <!-- 1.7.2-SNAPSHOT -->
<version>1.7.2</version> <!-- 1.7.3-SNAPSHOT -->
...
<configuration>
<name>${sa.rule.name}</name>
Expand Down Expand Up @@ -365,7 +365,7 @@ The POM of each <ins>Integration Rule</ins> must describe at least one `pass` co
<plugin>
<groupId>io.opentracing.contrib.specialagent</groupId>
<artifactId>specialagent-maven-plugin</artifactId>
<version>1.7.1</version> <!-- 1.7.2-SNAPSHOT -->
<version>1.7.2</version> <!-- 1.7.3-SNAPSHOT -->
<executions>
...
<execution>
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.7.2-SNAPSHOT</version>
<version>1.7.2</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.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>opentracing-specialagent-util</artifactId>
<name>OpenTracing SpecialAgent Utilities</name>
Expand Down
2 changes: 1 addition & 1 deletion 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.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>opentracing-specialagent</artifactId>
<name>OpenTracing SpecialAgent</name>
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.7.2-SNAPSHOT</version>
<version>1.7.2</version>
<packaging>pom</packaging>
<name>Java SpecialAgent</name>
<description>Java Agent for OpenTracing, with automatic instrumentation</description>
Expand Down
2 changes: 1 addition & 1 deletion rule/akka-actor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>akka-actor</artifactId>
<name>SpecialAgent Rule for Akka Actor</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/akka-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>akka-http</artifactId>
<name>SpecialAgent Rule for Akka Http</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/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.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>apache-httpclient</artifactId>
<name>SpecialAgent Rule for Apache HttpClient</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/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.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>asynchttpclient</artifactId>
<name>SpecialAgent Rule for AsyncHttpClient</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/aws-sdk-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.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>aws-sdk-1</artifactId>
<name>SpecialAgent Rule for AWS SDK v1</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/aws-sdk-2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>aws-sdk-2</artifactId>
<name>SpecialAgent Rule for AWS SDK v2</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/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.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>camel</artifactId>
<name>SpecialAgent Rule for Apache Camel</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/cassandra-driver-3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>cassandra-driver-3</artifactId>
<name>SpecialAgent Rule for Cassandra 3 Driver</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/cassandra-driver-4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>cassandra-driver-4</artifactId>
<name>SpecialAgent Rule for Cassandra 4 Driver</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/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.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>concurrent</artifactId>
<name>SpecialAgent Rule for Java Concurrent API</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/couchbase-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>couchbase-client</artifactId>
<name>SpecialAgent Rule for Couchbase Client</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/cxf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>cxf</artifactId>
<name>SpecialAgent Rule for Apache CXF</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/dubbo-2.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.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>dubbo-2.6</artifactId>
<name>SpecialAgent Rule for Dubbo 2.6</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/dubbo-2.7/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>dubbo-2.7</artifactId>
<name>SpecialAgent Rule for Dubbo 2.7</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/dynamic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>dynamic</artifactId>
<name>SpecialAgent Rule for Dynamic Instrumentation</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/elasticsearch-client-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>elasticsearch-client-rest</artifactId>
<name>SpecialAgent Rule for Elasticsearch Rest Client</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/elasticsearch-client-transport/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>io.opentracing.contrib.specialagent.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>elasticsearch-client-transport</artifactId>
<name>SpecialAgent Rule for Elasticsearch Transport Client</name>
Expand Down
2 changes: 1 addition & 1 deletion rule/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.rule</groupId>
<artifactId>rule</artifactId>
<version>1.7.2-SNAPSHOT</version>
<version>1.7.2</version>
</parent>
<artifactId>feign</artifactId>
<name>SpecialAgent Rule for Feign</name>
Expand Down
Loading

0 comments on commit b1b418d

Please sign in to comment.