forked from lightstep/lightstep-tracer-java-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
61 lines (52 loc) · 1.95 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?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.lightstep.tracer</groupId>
<artifactId>java</artifactId>
<packaging>pom</packaging>
<version>0.20.0</version>
<name>LightStep Tracer Java Common (parent)</name>
<description>LightStep Tracer Java Common (parent)</description>
<url>https://github.com/lightstep/lightstep-tracer-java-common</url>
<organization>
<name>LightStep</name>
<url>http://lightstep.com/</url>
</organization>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>lightstep</id>
<name>LightStep</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<connection>https://github.com/lightstep/lightstep-tracer-java-common</connection>
<developerConnection>https://github.com/lightstep/lightstep-tracer-java-common</developerConnection>
<url>https://github.com/lightstep/lightstep-tracer-java-common</url>
</scm>
<distributionManagement>
<repository>
<id>lightstep-bintray</id>
<url>https://api.bintray.com/maven/lightstep/maven/java-common/;publish=1</url>
</repository>
</distributionManagement>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<modules>
<module>grpc</module>
<module>okhttp</module>
<module>common</module>
<module>example</module>
<module>bundle-test</module>
</modules>
</project>