Created
September 7, 2018 13:58
-
-
Save geoand/8414fefea6df005fd30503cdbfc36912 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> | |
<groupId>com.example</groupId> | |
<artifactId>indy-maven-generate-repo-test</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<dependencies> | |
<dependency> | |
<groupId>io.opentracing.contrib</groupId> | |
<artifactId>opentracing-spring-jaeger-web-starter</artifactId> | |
<version>${opentracing-spring-jaeger-web-starter.version}</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<artifactId>maven-dependency-plugin</artifactId> | |
<groupId>org.apache.maven.plugins</groupId> | |
<version>2.10</version> | |
<executions> | |
<execution> | |
<id>download-sources</id> | |
<phase>prepare-package</phase> | |
<goals> | |
<goal>sources</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
<properties> | |
<maven.compiler.source>1.8</maven.compiler.source> | |
<maven.compiler.target>1.8</maven.compiler.target> | |
<opentracing-spring-jaeger-web-starter.version>0.2.0.redhat-00015</opentracing-spring-jaeger-web-starter.version> | |
</properties> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment