<?xml version="1.0" encoding="utf-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">  
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>9</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>  
  <groupId>com.aliyun.openservices</groupId>  
  <artifactId>ons-parent</artifactId>  
  <version>1.9.6.Final</version>
  <packaging>pom</packaging>
  <name>ons-parent ${project.version}</name>  
  <description>Open Notification Service, Apache RocketMQ Commercial Distribution. This distribution include all of the features of the open source version, with some additional, higher management features.</description>  
  <inceptionYear>2017</inceptionYear>  
  <licenses> 
    <license> 
      <name>The Apache Software License, Version 2.0</name>  
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>  
      <distribution>repo</distribution> 
    </license> 
  </licenses>
  <properties> 
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>  
    <file_encoding>UTF-8</file_encoding>  
    <!-- Compiler settings properties -->  
    <maven.compiler.source>1.7</maven.compiler.source>  
    <maven.compiler.target>1.7</maven.compiler.target>  
    <eagleeye.core.version>1.4.8</eagleeye.core.version>  
    <extra-enforcer-rules.version>1.0-beta-4</extra-enforcer-rules.version>
    <maven-enforcer-plugin.version>1.4.1</maven-enforcer-plugin.version>
    <maven.test.skip>true</maven.test.skip>  
    <maven.jdoc.skip>true</maven.jdoc.skip>  
    <downloadSources>true</downloadSources>  
    <ons.release>false</ons.release> 
    <powermock.version>2.0.2</powermock.version>
    <awaitility.version>4.0.3</awaitility.version>
  </properties>  
  <profiles> 
    <profile> 
      <id>release</id>  
      <modules> 
        <module>ons-client</module> 
      </modules>  
      <properties> 
        <ons.release>true</ons.release>  
        <maven.jdoc.skip>false</maven.jdoc.skip> 
      </properties> 
    </profile>  
    <profile> 
      <id>default</id>  
      <activation> 
        <activeByDefault>true</activeByDefault> 
      </activation>  
      <modules> 
        <module>ons-client</module>  
        <module>ons-core</module>  
        <module>ons-top</module>  
        <!-- <module>ons-housekeeping</module>   -->
        <module>ons-auth</module>  
        <module>ons-instance</module> 
      </modules> 
    </profile> 
  </profiles>  
  <build> 
    <plugins> 
      <plugin> 
        <groupId>org.apache.maven.plugins</groupId>  
        <artifactId>maven-gpg-plugin</artifactId>  
        <version>1.6</version>  
        <configuration> 
          <useAgent>true</useAgent> 
        </configuration> 
      </plugin>  
      <plugin> 
        <groupId>org.codehaus.mojo</groupId>  
        <artifactId>versions-maven-plugin</artifactId>  
        <version>2.7</version> 
      </plugin>  
      <plugin> 
        <groupId>org.codehaus.mojo</groupId>  
        <artifactId>clirr-maven-plugin</artifactId>  
        <version>2.7</version> 
      </plugin>  
      <plugin>
        <artifactId>maven-enforcer-plugin</artifactId>
        <version>${maven-enforcer-plugin.version}</version>
        <executions>
          <execution>
            <id>enforce-ban-circular-dependencies</id>
            <goals>
              <goal>enforce</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <rules>
            <banCircularDependencies />
            <dependencyConvergence />
          </rules>
          <fail>true</fail>
        </configuration>
        <dependencies>
          <dependency>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>extra-enforcer-rules</artifactId>
            <version>${extra-enforcer-rules.version}</version>
          </dependency>
        </dependencies>
      </plugin>
      <plugin> 
        <artifactId>maven-compiler-plugin</artifactId>  
        <version>3.6.1</version>  
        <configuration> 
          <source>${maven.compiler.source}</source>  
          <target>${maven.compiler.target}</target>  
          <compilerVersion>${maven.compiler.source}</compilerVersion>  
          <showDeprecation>true</showDeprecation>  
          <showWarnings>true</showWarnings>  
          <encoding>${file_encoding}</encoding> 
        </configuration> 
      </plugin>  
      <plugin> 
        <artifactId>maven-surefire-plugin</artifactId>  
        <version>2.19.1</version>  
        <configuration> 
          <argLine>-Xms512m -Xmx1024m</argLine>  
          <forkMode>always</forkMode>  
          <includes> 
            <include>**/*Test.java</include> 
          </includes> 
        </configuration> 
      </plugin>  
      <plugin> 
        <artifactId>maven-site-plugin</artifactId>  
        <version>3.6</version>  
        <configuration> 
          <locales>en_US</locales>  
          <outputEncoding>UTF-8</outputEncoding>  
          <inputEncoding>UTF-8</inputEncoding> 
        </configuration> 
      </plugin>  
      <plugin> 
        <artifactId>maven-source-plugin</artifactId>  
        <version>3.0.1</version>  
        <executions> 
          <execution> 
            <id>attach-sources</id>  
            <goals> 
              <goal>jar</goal> 
            </goals> 
          </execution> 
        </executions> 
      </plugin>  
      <plugin> 
        <artifactId>maven-javadoc-plugin</artifactId>  
        <version>2.10.4</version>  
        <configuration> 
          <charset>UTF-8</charset>  
          <locale>en_US</locale> 
        </configuration>  
        <executions> 
          <execution> 
            <id>aggregate</id>  
            <goals> 
              <goal>aggregate</goal> 
            </goals>  
            <phase>site</phase> 
          </execution> 
        </executions> 
      </plugin>  
      <plugin> 
        <artifactId>maven-resources-plugin</artifactId>  
        <version>3.0.2</version>  
        <configuration> 
          <encoding>${project.build.sourceEncoding}</encoding> 
        </configuration> 
      </plugin>  
      <plugin> 
        <groupId>org.codehaus.mojo</groupId>  
        <artifactId>findbugs-maven-plugin</artifactId>  
        <version>3.0.4</version> 
      </plugin>  
      <plugin> 
        <artifactId>maven-checkstyle-plugin</artifactId>  
        <version>2.17</version>  
        <executions> 
          <execution> 
            <id>verify</id>  
            <phase>verify</phase>  
            <configuration> 
              <configLocation>style/ons_checkstyle.xml</configLocation>  
              <encoding>UTF-8</encoding>  
              <consoleOutput>true</consoleOutput>  
              <failsOnError>true</failsOnError>  
              <includeTestSourceDirectory>false</includeTestSourceDirectory> 
            </configuration>  
            <goals> 
              <goal>check</goal> 
            </goals> 
          </execution> 
        </executions> 
      </plugin>  
      <plugin> 
        <groupId>pl.project13.maven</groupId>  
        <artifactId>git-commit-id-plugin</artifactId>  
        <version>2.2.3</version>  
        <executions> 
          <execution> 
            <goals> 
              <goal>revision</goal> 
            </goals> 
          </execution> 
        </executions>  
        <configuration> 
          <prefix>git</prefix>  
          <dateFormat>yyyy-MM-dd HH:mm:ss z</dateFormat>  
          <failOnNoGitDirectory>false</failOnNoGitDirectory>  
          <dotGitDirectory>${project.basedir}/.git</dotGitDirectory>  
          <skipPoms>false</skipPoms>  
          <verbose>false</verbose>  
          <generateGitPropertiesFile>false</generateGitPropertiesFile> 
        </configuration> 
      </plugin>  
      <plugin> 
        <artifactId>maven-jar-plugin</artifactId>  
        <version>3.0.2</version>  
        <configuration> 
          <archive> 
            <manifest> 
              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>  
              <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>  
              <addClasspath>false</addClasspath> 
            </manifest>  
            <manifestEntries> 
              <Project-Version>${project.version}</Project-Version>  
              <Git-Revision>${git.commit.id}</Git-Revision>  
              <Build-Branch>${git.branch}</Build-Branch>  
              <Build-Timestamp>${build.timestamp}</Build-Timestamp> 
            </manifestEntries> 
          </archive> 
        </configuration> 
      </plugin> 
      <plugin>
        <groupId>org.sonatype.central</groupId>
        <artifactId>central-publishing-maven-plugin</artifactId>
        <version>0.8.0</version>
        <extensions>true</extensions>
        <configuration>
          <publishingServerId>central</publishingServerId>
          <!-- <autoPublish>true</autoPublish>
          <waitUntil>published</waitUntil> -->
        </configuration>
      </plugin>
    </plugins>
  </build>  
  <dependencyManagement> 
    <dependencies> 
      <dependency> 
        <groupId>com.alibaba.middleware</groupId>  
        <artifactId>metrics-core-api</artifactId>  
        <version>1.6.2.3</version> 
      </dependency>  
      <dependency> 
        <groupId>org.slf4j</groupId>  
        <artifactId>slf4j-api</artifactId>  
        <version>1.7.7</version> 
      </dependency>  
      <dependency> 
        <groupId>ch.qos.logback</groupId>  
        <artifactId>logback-classic</artifactId>  
        <version>1.1.11</version> 
      </dependency>  
      <dependency> 
        <groupId>ch.qos.logback</groupId>  
        <artifactId>logback-core</artifactId>  
        <version>1.1.11</version> 
      </dependency>  
      <dependency> 
        <groupId>commons-codec</groupId>  
        <artifactId>commons-codec</artifactId>  
        <version>1.13</version> 
      </dependency>  
      <dependency> 
        <groupId>com.google.guava</groupId>  
        <artifactId>guava</artifactId>  
        <version>32.1.2-jre</version>
      </dependency>  
      <dependency> 
        <groupId>org.apache.commons</groupId>  
        <artifactId>commons-lang3</artifactId>  
        <version>3.5</version> 
      </dependency>  
      <dependency> 
        <groupId>org.apache.commons</groupId>  
        <artifactId>commons-csv</artifactId>  
        <version>1.5</version> 
      </dependency>  
      <dependency> 
        <groupId>commons-beanutils</groupId>  
        <artifactId>commons-beanutils</artifactId>  
        <version>1.9.3</version> 
      </dependency>  
      <dependency> 
        <groupId>com.alibaba</groupId>  
        <artifactId>fastjson</artifactId>  
        <version>1.2.51.sec09_noneautotype</version> 
      </dependency>  
      <dependency> 
        <groupId>junit</groupId>  
        <artifactId>junit</artifactId>  
        <version>4.13.2</version>
        <scope>test</scope> 
      </dependency>  
      <dependency> 
        <groupId>org.assertj</groupId>  
        <artifactId>assertj-core</artifactId>  
        <version>2.6.0</version>  
        <scope>test</scope> 
      </dependency>  
      <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-core</artifactId>
        <version>2.23.0</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.powermock</groupId>
        <artifactId>powermock-module-junit4</artifactId>
        <version>${powermock.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.powermock</groupId>
        <artifactId>powermock-api-mockito2</artifactId>
        <version>${powermock.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency>
        <groupId>org.awaitility</groupId>
        <artifactId>awaitility</artifactId>
        <version>${awaitility.version}</version>
        <scope>test</scope>
      </dependency>
      <dependency> 
        <groupId>com.alibaba</groupId>  
        <artifactId>butler-noc-sdk</artifactId>  
        <version>2.0.1-SNAPSHOT</version> 
      </dependency>  
      <dependency> 
        <groupId>com.taobao.eagleeye</groupId>  
        <artifactId>eagleeye-core</artifactId>  
        <version>${eagleeye.core.version}</version> 
      </dependency>  
      <dependency> 
        <groupId>com.alibaba.security</groupId>  
        <artifactId>security-spring-dependencies</artifactId>  
        <version>1.0.0-SNAPSHOT</version>  
        <type>pom</type> 
      </dependency>  
      <dependency> 
        <groupId>com.aliyun</groupId>  
        <artifactId>aliyun-java-sdk-core</artifactId>  
        <version>3.0.8</version> 
      </dependency>  
      <dependency> 
        <groupId>com.aliyun.shared</groupId>  
        <artifactId>accesskey.sdk</artifactId>  
        <version>1.1.4.2</version>
      </dependency>  
      <dependency> 
        <groupId>com.alibaba.sharing.platform</groupId>  
        <artifactId>dauth-wrapper</artifactId>  
        <version>1.3.2</version>  
        <exclusions> 
          <exclusion> 
            <groupId>com.aliyun.shared</groupId>  
            <artifactId>ak.sdk</artifactId> 
          </exclusion> 
        </exclusions> 
      </dependency>
      <dependency> 
        <groupId>com.github.ben-manes.caffeine</groupId>  
        <artifactId>caffeine</artifactId>  
        <version>2.8.5</version> 
      </dependency>  
      <dependency> 
        <groupId>com.aliyun</groupId>  
        <artifactId>aliyun-java-sdk-ons-inner</artifactId>  
        <version>1.0.6</version> 
      </dependency>  
      <dependency> 
        <groupId>com.aliyun</groupId>  
        <artifactId>aliyun-java-sdk-tag-inner</artifactId>  
        <version>1.0.8</version> 
      </dependency>  
      <dependency> 
        <groupId>com.taobao.csp</groupId>  
        <artifactId>sentinel</artifactId>  
        <exclusions> 
          <exclusion> 
            <groupId>org.springframework</groupId>  
            <artifactId>spring</artifactId> 
          </exclusion>  
          <exclusion> 
            <groupId>io.netty</groupId>  
            <artifactId>netty-handler</artifactId> 
          </exclusion>  
          <exclusion> 
            <groupId>io.netty</groupId>  
            <artifactId>netty-buffer</artifactId> 
          </exclusion>  
          <exclusion> 
            <groupId>io.netty</groupId>  
            <artifactId>netty-common</artifactId> 
          </exclusion>  
          <exclusion> 
            <groupId>io.netty</groupId>  
            <artifactId>netty-resolver</artifactId> 
          </exclusion>  
          <exclusion> 
            <groupId>io.netty</groupId>  
            <artifactId>netty-common</artifactId> 
          </exclusion>  
          <exclusion> 
            <groupId>io.netty</groupId>  
            <artifactId>netty-codec</artifactId> 
          </exclusion>  
          <exclusion> 
            <groupId>io.netty</groupId>  
            <artifactId>netty-transport</artifactId> 
          </exclusion> 
        </exclusions>  
        <version>3.9.4</version> 
      </dependency>  
      <!-- spring MySQL start -->  
      <dependency> 
        <groupId>mysql</groupId>  
        <artifactId>mysql-connector-java</artifactId>  
        <version>5.1.47</version> 
      </dependency>  
      <dependency> 
        <groupId>com.alibaba</groupId>  
        <artifactId>druid</artifactId>  
        <version>1.1.24</version>
      </dependency>  
      <dependency> 
        <groupId>org.mybatis</groupId>  
        <artifactId>mybatis-spring</artifactId>  
        <version>2.0.1</version> 
      </dependency>  
      <dependency> 
        <groupId>org.mybatis</groupId>  
        <artifactId>mybatis</artifactId>  
        <version>3.5.0</version> 
      </dependency>  
      <dependency> 
        <groupId>org.springframework</groupId>  
        <artifactId>spring-context</artifactId>  
        <version>4.1.8.RELEASE</version> 
      </dependency>  
      <dependency> 
        <groupId>org.springframework</groupId>  
        <artifactId>spring-core</artifactId>  
        <version>4.1.8.RELEASE</version> 
      </dependency>  
      <dependency> 
        <groupId>org.springframework</groupId>  
        <artifactId>spring-jdbc</artifactId>  
        <version>4.1.8.RELEASE</version> 
      </dependency>  
<!--      Upgrade ram auth client to 1.2.8, which enable v2 auth engine in default mode, refer to -->
<!--      https://yuque.antfin.com/ram-sts/auth/ir257k#RIZc1 for more details.-->
      <dependency>
        <groupId>com.aliyun.ram</groupId>
        <artifactId>ram-auth-client</artifactId>
        <version>1.2.31</version>
      </dependency>

      <!-- tokenServer 集群限流-->
      <dependency>
        <groupId>com.alibaba.mq.flow-limit</groupId>
        <artifactId>flow-limit-brokerclient</artifactId>
        <version>1.1.6.2-ons</version>
      </dependency>

      <!-- for prometheus -->
      <dependency>
        <groupId>io.prometheus</groupId>
        <artifactId>simpleclient</artifactId>
        <version>0.15.0</version>
      </dependency>

      <dependency>
        <groupId>io.prometheus</groupId>
        <artifactId>simpleclient_hotspot</artifactId>
        <version>0.15.0</version>
      </dependency>

      <dependency>
        <groupId>io.prometheus</groupId>
        <artifactId>simpleclient_httpserver</artifactId>
        <version>0.15.0</version>
      </dependency>

      <dependency>
        <groupId>io.prometheus</groupId>
        <artifactId>simpleclient_common</artifactId>
        <version>0.15.0</version>
      </dependency>

      <!-- Enforcer : ons.transaction/timer/auth/broker/tools -->
      <dependency>
        <groupId>org.objenesis</groupId>
        <artifactId>objenesis</artifactId>
        <version>3.0.1</version>
      </dependency>

      <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-stdlib</artifactId>
        <version>1.4.10</version>
      </dependency>

      <dependency>
        <groupId>net.bytebuddy</groupId>
        <artifactId>byte-buddy-agent</artifactId>
        <version>1.9.3</version>
      </dependency>

      <dependency>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-stdlib-common</artifactId>
        <version>1.4.10</version>
      </dependency>

      <dependency>
        <groupId>org.javassist</groupId>
        <artifactId>javassist</artifactId>
        <version>3.24.0-GA</version>
      </dependency>

      <dependency>
        <groupId>net.bytebuddy</groupId>
        <artifactId>byte-buddy</artifactId>
        <version>1.9.3</version>
      </dependency>

      <!-- Enforcer : ons.auth/tools -->
      <dependency>
        <groupId>com.aliyun</groupId>
        <artifactId>aliyun-java-sdk-ubsms-inner</artifactId>
        <version>2.0.4</version>
      </dependency>

      <dependency>
        <groupId>com.google.protobuf</groupId>
        <artifactId>protobuf-java</artifactId>
        <version>2.6.1</version>
      </dependency>

      <dependency>
        <groupId>com.aliyun.openservices</groupId>
        <artifactId>ons-auth4client</artifactId>
        <version>1.9.6.Final</version>
      </dependency>

      <dependency>
        <groupId>com.alibaba.middleware</groupId>
        <artifactId>tls-sslsocketfactory</artifactId>
        <version>1.0.4</version>
      </dependency>

      <dependency>
        <groupId>io.reactivex.rxjava2</groupId>
        <artifactId>rxjava</artifactId>
        <version>2.1.12</version>
      </dependency>

      <dependency>
        <groupId>commons-collections</groupId>
        <artifactId>commons-collections</artifactId>
        <version>3.2.2</version>
      </dependency>

      <dependency>
        <groupId>commons-lang</groupId>
        <artifactId>commons-lang</artifactId>
        <version>2.6</version>
      </dependency>

      <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpcore</artifactId>
        <version>4.4.6</version>
      </dependency>

      <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>4.5.13</version>
      </dependency>

      <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.7</version>
      </dependency>

      <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
        <version>1.2.17</version>
      </dependency>

      <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>javax.servlet-api</artifactId>
        <version>3.1.0</version>
      </dependency>

      <dependency>
        <groupId>io.netty</groupId>
        <artifactId>netty-all</artifactId>
        <version>4.1.114.Final</version>
      </dependency>

      <dependency>
        <groupId>com.alibaba.rocketmq</groupId>
        <artifactId>rocketmq-client</artifactId>
        <version>4.5.0.10</version>
      </dependency>

      <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.2</version>
      </dependency>

      <dependency>
        <groupId>com.taobao.common</groupId>
        <artifactId>fulllinkstresstesting</artifactId>
        <version>0.9.9.3</version>
      </dependency>

      <dependency>
        <groupId>com.taobao.middleware</groupId>
        <artifactId>logger.api</artifactId>
        <version>0.2.7</version>
      </dependency>

      <dependency>
        <groupId>com.taobao.diamond</groupId>
        <artifactId>diamond-client</artifactId>
        <version>3.8.13</version>
      </dependency>

      <dependency>
        <groupId>com.aliyun</groupId>
        <artifactId>aliyun-java-sdk-ubsms-inner</artifactId>
        <version>2.0.4</version>
      </dependency>

      <dependency>
        <groupId>com.aliyun</groupId>
        <artifactId>aliyun-java-sdk-ubsms-inner</artifactId>
        <version>2.0.1-SNAPSHOT</version>
      </dependency>
      
      <!-- Enforcer: ons.broker-->
      <dependency>
        <groupId>com.alibaba.middleware</groupId>
        <artifactId>tls-common</artifactId>
        <version>1.0.3</version>
      </dependency>

      <dependency>
        <groupId>com.github.jnr</groupId>
        <artifactId>jnr-ffi</artifactId>
        <version>2.1.2</version>
      </dependency>

      <dependency>
        <groupId>org.codehaus.jackson</groupId>
        <artifactId>jackson-mapper-lgpl</artifactId>
        <version>1.9.13</version>
      </dependency>

      <dependency>
        <groupId>com.fasterxml.jackson.core</groupId>
        <artifactId>jackson-databind</artifactId>
        <version>2.9.10.6</version>
      </dependency>

      <dependency>
        <groupId>org.checkerframework</groupId>
        <artifactId>checker-qual</artifactId>
        <version>3.30.0</version>
      </dependency>

      <dependency>
        <groupId>com.google.errorprone</groupId>
        <artifactId>error_prone_annotations</artifactId>
        <version>2.18.0</version>
      </dependency>

      <dependency>
        <groupId>com.aliyun</groupId>
        <artifactId>aliyun-java-sdk-kms</artifactId>
        <version>2.11.0</version>
      </dependency>

      <dependency>
        <groupId>org.reactivestreams</groupId>
        <artifactId>reactive-streams</artifactId>
        <version>1.0.3</version>
      </dependency>
      
      <dependency>
        <groupId>com.aliyun</groupId>
        <artifactId>aliyun-java-sdk-ram</artifactId>
        <version>3.1.0</version>
      </dependency>
      <dependency>
        <groupId>com.alibaba.sec</groupId>
        <artifactId>alisec-oss-encrypt-client</artifactId>
        <version>1.0.3</version>
        <exclusions>
          <exclusion>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
          </exclusion>
        </exclusions>
      </dependency>
      <dependency>
        <groupId>com.aliyun.oss</groupId>
        <artifactId>aliyun-sdk-oss</artifactId>
        <version>3.10.2</version>
      </dependency>
      <dependency>
        <groupId>org.jdom</groupId>
        <artifactId>jdom2</artifactId>
        <version>2.0.6.1</version>
      </dependency>
      <dependency>
        <groupId>org.codehaus.plexus</groupId>
        <artifactId>plexus-utils</artifactId>
        <version>1.5.15</version>
      </dependency>
      <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>2.6</version>
      </dependency>
      <dependency>
        <groupId>org.bouncycastle</groupId>
        <artifactId>bcpg-jdk15on</artifactId>
        <version>1.62</version>
      </dependency>
      <dependency>
        <groupId>org.bouncycastle</groupId>
        <artifactId>bcprov-jdk15on</artifactId>
        <version>1.62</version>
      </dependency>
      <dependency>
        <groupId>io.opentelemetry</groupId>
        <artifactId>opentelemetry-api</artifactId>
        <version>1.14.0</version>
      </dependency>
      <dependency>
        <groupId>io.opentelemetry</groupId>
        <artifactId>opentelemetry-context</artifactId>
        <version>1.14.0</version>
      </dependency>
      <dependency>
        <groupId>io.opentelemetry</groupId>
        <artifactId>opentelemetry-exporter-otlp-metrics</artifactId>
        <version>1.14.0</version>
      </dependency>
      <dependency>
        <groupId>io.opentelemetry</groupId>
        <artifactId>opentelemetry-sdk</artifactId>
        <version>1.14.0</version>
      </dependency>
    </dependencies> 
  </dependencyManagement>  
  <distributionManagement>
    <snapshotRepository>
      <id>sonatype-nexus-snapshots</id>
      <url>https://central.sonatype.com/repository/maven-snapshots/</url>
    </snapshotRepository>
    <repository>
      <id>sonatype-nexus-staging</id>
      <url>https://central.sonatype.com</url>
    </repository>
  </distributionManagement>
  <scm>
    <url>git@gitlab.alibaba-inc.com:middleware/ons.git</url>  
    <connection>scm:git:git@gitlab.alibaba-inc.com:middleware/ons.git</connection>  
    <developerConnection>scm:git:git@gitlab.alibaba-inc.com:middleware/ons.git</developerConnection> 
  </scm>
  <developers>
    <developer>
      <id>aliyunproducts</id>
      <name>Aliyun SDK</name>
      <email>aliyunsdk@aliyun.com</email>
    </developer>
  </developers>
  <contributors><contributor><properties><provider>fuzhi.lfz@alibaba-inc.com</provider><codeName>null</codeName><codeUrl>git@gitlab.alibaba-inc.com:middleware/ons.git commit:f566559f9</codeUrl><description>contributors added by SCM Plugin, please don't modify it!</description></properties></contributor></contributors>
</project>
