111 lines
4.0 KiB
XML
111 lines
4.0 KiB
XML
<?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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.datadoghq</groupId>
|
|
<artifactId>dd-trace-java</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<opentracing.version>0.22.0</opentracing.version>
|
|
<java.version>1.7</java.version>
|
|
<ot.dd-trace.version>0.0.1-SNAPSHOT</ot.dd-trace.version>
|
|
|
|
</properties>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The MIT License (MIT)</name>
|
|
<url>http://opensource.org/licenses/MIT</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<url>https://github.com/datadog/dd-trace-java</url>
|
|
<connection>scm:git:git://github.com/datadog/dd-trace-java.git</connection>
|
|
<developerConnection>scm:git:git@github.com:datadog/dd-trace-java.git</developerConnection>
|
|
<tag>dd-trace-java-1.0</tag>
|
|
</scm>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>datadog</id>
|
|
<name>Datadog developers</name>
|
|
<email>dev@datadoghq.com</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<modules>
|
|
<module>dd-trace</module>
|
|
<module>dd-java-agent</module>
|
|
<module>dd-trace-examples</module>
|
|
</modules>
|
|
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>ossrh</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>ossrh</id>
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.6.1</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<!--<plugin>-->
|
|
<!--<groupId>org.apache.maven.plugins</groupId>-->
|
|
<!--<artifactId>maven-gpg-plugin</artifactId>-->
|
|
<!--<version>1.6</version>-->
|
|
<!--<executions>-->
|
|
<!--<execution>-->
|
|
<!--<id>sign-artifacts</id>-->
|
|
<!--<phase>verify</phase>-->
|
|
<!--<goals>-->
|
|
<!--<goal>sign</goal>-->
|
|
<!--</goals>-->
|
|
<!--</execution>-->
|
|
<!--</executions>-->
|
|
<!--</plugin>-->
|
|
<!-- <plugin> -->
|
|
<!-- <groupId>org.sonatype.plugins</groupId> -->
|
|
<!-- <artifactId>nexus-staging-maven-plugin</artifactId> -->
|
|
<!-- <version>1.6.3</version> -->
|
|
<!-- <extensions>true</extensions> -->
|
|
<!-- <configuration> -->
|
|
<!-- <serverId>ossrh</serverId> -->
|
|
<!-- <nexusUrl>https://oss.sonatype.org/</nexusUrl> -->
|
|
<!-- <autoReleaseAfterClose>true</autoReleaseAfterClose> -->
|
|
<!-- </configuration> -->
|
|
<!-- </plugin> -->
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |