forked from aws/aws-xray-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
152 lines (152 loc) · 5.31 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<project xmlns="http://maven.apache.org/POM/4.0.0"
>
<modelVersion>4.0.0</modelVersion>
<groupId>com.amazonaws</groupId>
<artifactId>aws-xray-recorder-sdk-pom</artifactId>
<version>2.4.0</version>
<packaging>pom</packaging>
<name>AWS X-Ray Recorder SDK for Java</name>
<description>The Amazon Web Services X-Ray Recorder SDK for Java provides Java APIs for emitting tracing data to AWS X-Ray. AWS X-Ray helps developers analyze and debug distributed applications. With X-Ray, you can understand how your application and its underlying services are performing to identify and troubleshoot the root cause of performance issues and errors.</description>
<url>https://aws.amazon.com/documentation/xray/</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://aws.amazon.com/apache2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>amazonwebservices</id>
<organization>Amazon Web Services</organization>
<organizationUrl>https://aws.amazon.com</organizationUrl>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<url>https://github.com/aws/aws-xray-sdk-java.git</url>
</scm>
<modules>
<module>aws-xray-recorder-sdk-apache-http</module>
<module>aws-xray-recorder-sdk-aws-sdk</module>
<module>aws-xray-recorder-sdk-aws-sdk-instrumentor</module>
<module>aws-xray-recorder-sdk-bom</module>
<module>aws-xray-recorder-sdk-core</module>
<module>aws-xray-recorder-sdk-sql</module>
<module>aws-xray-recorder-sdk-sql-mysql</module>
<module>aws-xray-recorder-sdk-sql-postgres</module>
<module>aws-xray-recorder-sdk-spring</module>
<module>aws-xray-recorder-sdk-aws-sdk-core</module>
<module>aws-xray-recorder-sdk-aws-sdk-v2</module>
<module>aws-xray-recorder-sdk-aws-sdk-v2-instrumentor</module>
<module>aws-xray-recorder-sdk-slf4j</module>
<module>aws-xray-recorder-sdk-log4j</module>
<module>aws-xray-recorder-sdk-metrics</module>
</modules>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>staging-repo</name>
<url>https://aws.oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<properties>
<awsxrayrecordersdk.version>2.4.0</awsxrayrecordersdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>${project.build.outputDirectory}/com/amazonaws/xray/sdk.properties</outputFile>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
<configuration>
<runOrder>random</runOrder>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
</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.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<footer> <![CDATA[
<script src="/SdkStatic/sdk-priv.js" async="true"></script>
]]>
</footer>
<bottom><![CDATA[Copyright © 2018 Amazon Web Services, Inc. All Rights Reserved.]]></bottom>
<additionalJOption>-Xdoclint:none</additionalJOption>
<additionalOptions>
<additionalOption>--allow-script-in-comments</additionalOption>
</additionalOptions>
</configuration>
<executions>
<execution>
<id>javadoc-jar</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>