update dependencyManagement (#2660)
* Fix #2546 * Change the stackdepth type * Fix bug * Fix CI failed * fix #2599 * fix ci * add license * add ActiveTag error methods * fix * fix * fix doc * update doc * update dependencyManagement * fix
This commit is contained in:
parent
e07172b84f
commit
b4ee1f17fb
|
|
@ -69,6 +69,12 @@
|
|||
<zipkin.version>2.9.1</zipkin.version>
|
||||
<caffeine.version>2.6.2</caffeine.version>
|
||||
<okhttp.version>3.9.0</okhttp.version>
|
||||
<jackson-core.version>2.9.5</jackson-core.version>
|
||||
<jackson-annotations.version>2.9.5</jackson-annotations.version>
|
||||
<jackson-databind.version>2.9.5</jackson-databind.version>
|
||||
<commons-codec.version>1.11</commons-codec.version>
|
||||
<commons-lang3.version>3.7</commons-lang3.version>
|
||||
<simpleclient.version>0.6.0</simpleclient.version>
|
||||
|
||||
<maven-docker-plugin.version>0.28.0</maven-docker-plugin.version>
|
||||
</properties>
|
||||
|
|
@ -322,6 +328,36 @@
|
|||
<version>${caffeine.version}</version>
|
||||
</dependency>
|
||||
<!-- -->
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-core</artifactId>
|
||||
<version>${jackson-core.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${jackson-annotations.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>${jackson-databind.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
<version>${commons-codec.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
<version>${commons-lang3.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.prometheus</groupId>
|
||||
<artifactId>simpleclient</artifactId>
|
||||
<version>${simpleclient.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue