组织ID: |
io.opentracing.contrib |
项目ID: |
opentracing-tracerresolver |
版本: |
0.1.0 |
最后修改时间: |
2018-08-01 11:21:59 |
包类型: |
jar |
标题: |
Tracer resolver |
描述: |
Resolver API for OpenTracing Tracer implementations. |
相关URL: |
https://github.com/opentracing-contrib/java-tracerresolver |
大小: |
7.72KB |
|
Maven引入代码: |
<dependency>
<groupId>io.opentracing.contrib</groupId>
<artifactId>opentracing-tracerresolver</artifactId>
<version>0.1.0</version>
</dependency>
|
Gradle引入代码: |
io.opentracing.contrib:opentracing-tracerresolver:0.1.0
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2017 The OpenTracing Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Artifact identification -->
<groupId>io.opentracing.contrib</groupId>
<artifactId>opentracing-tracerresolver</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<!-- Project information -->
<name>Tracer resolver</name>
<description>Resolver API for OpenTracing Tracer implementations.</description>
<url>https://github.com/opentracing-contrib/java-tracerresolver</url>
<inceptionYear>2017</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://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>
<build.java.version>1.6</build.java.version>
<opentracing-api.version>0.21.0</opentracing-api.version>
<javax.annotation-api.version>1.3</javax.annotation-api.version>
<junit.version>4.12</junit.version>
<hamcrest.version>1.3</hamcrest.version>
<mockito.version>1.10.19</mockito.version>
<maven-compiler-plugin.version>2.5.1</maven-compiler-plugin.version>
<maven-source-plugin.version>2.4</maven-source-plugin.version>
<maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version>
<license-maven-plugin.version>3.0</license-maven-plugin.version>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<centralsync-maven-plugin.version>0.1.0</centralsync-maven-plugin.version>
</properties>
<developers>
<developer>
<name>Sjoerd Talsma</name>
<email>sjoerd@talsma-ict.nl</email>
<url>https://github.com/sjoerdtalsma</url>
<organization>Talsma ICT</organization>
</developer>
</developers>
<scm>
<url>https://github.com/opentracing-contrib/java-tracerresolver</url>
<connection>scm:git:https://github.com/opentracing-contrib/java-tracerresolver.git</connection>
<developerConnection>scm:git:https://github.com/opentracing-contrib/java-tracerresolver.git</developerConnection>
<tag>0.1.0</tag>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/opentracing-contrib/java-tracerresolver/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>bintray</id>
<url>https://api.bintray.com/maven/opentracing/maven/opentracing-tracerresolver/;publish=1</url>
</repository>
<snapshotRepository>
<id>jfrog-snapshots</id>
<url>http://oss.jfrog.org/artifactory/oss-snapshot-local</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>io.opentracing</groupId>
<artifactId>opentracing-api</artifactId>
<version>${opentracing-api.version}</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>${javax.annotation-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.opentracing</groupId>
<artifactId>opentracing-mock</artifactId>
<version>${opentracing-api.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${build.java.version}</source>
<target>${build.java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${license-maven-plugin.version}</version>
<configuration>
<header>${project.basedir}/.mvn/license/header.txt</header>
<properties>
<owner>The OpenTracing Authors</owner>
</properties>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
<excludes>
<exclude>.travis.yml</exclude>
<exclude>.gitignore</exclude>
<exclude>.mvn/**</exclude>
<exclude>mvnw*</exclude>
<exclude>etc/header.txt</exclude>
<exclude>**/.idea/**</exclude>
<exclude>LICENSE</exclude>
<exclude>**/*.md</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
</excludes>
<strictCheck>true</strictCheck>
</configuration>
<dependencies>
<dependency>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin-git</artifactId>
<version>${license-maven-plugin.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<phase>compile</phase>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>io.zipkin.centralsync-maven-plugin</groupId>
<artifactId>centralsync-maven-plugin</artifactId>
<version>${centralsync-maven-plugin.version}</version>
<configuration>
<subject>opentracing</subject>
<repo>maven</repo>
<packageName>opentracing-tracerresolver</packageName>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>generate-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
io.opentracing.contrib.tracerresolver.PriorityComparator.class
io.opentracing.contrib.tracerresolver.TracerResolver.class
io.opentracing.contrib.tracerresolver.TracerConverter.class
META-INF/maven/io.opentracing.contrib/opentracing-tracerresolver/pom.xml
META-INF/maven/io.opentracing.contrib/opentracing-tracerresolver/pom.properties
|
依赖Jar: |
opentracing-api-${opentracing-api.version}.jar
/io.opentracing/opentracing-api/${opentracing-api.version}
查看opentracing-api所有版本文件
javax.annotation-api-${javax.annotation-api.version}.jar
/javax.annotation/javax.annotation-api/${javax.annotation-api.version}
查看javax.annotation-api所有版本文件
opentracing-mock-${opentracing-api.version}.jar
/io.opentracing/opentracing-mock/${opentracing-api.version}
查看opentracing-mock所有版本文件
junit-${junit.version}.jar
/junit/junit/${junit.version}
查看junit所有版本文件
hamcrest-library-${hamcrest.version}.jar
/org.hamcrest/hamcrest-library/${hamcrest.version}
查看hamcrest-library所有版本文件
mockito-all-${mockito.version}.jar
/org.mockito/mockito-all/${mockito.version}
查看mockito-all所有版本文件
|