-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
166 lines (154 loc) · 6.11 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.sematext.spm</groupId>
<artifactId>spm-client-parent</artifactId>
<packaging>pom</packaging>
<version>3.0.0</version>
<name>SPM Client Parent Pom</name>
<url>https://github.com/sematext/spm-client</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compile.source>1.6</maven.compile.source>
<maven.compile.target>1.6</maven.compile.target>
<maven.compile.test.source>1.6</maven.compile.test.source>
<maven.compile.test.target>1.6</maven.compile.test.target>
<commons-logging.version>1.1.1</commons-logging.version>
<junit.version>4.13.1</junit.version>
<log4j.version>2.17.2</log4j.version>
<dockerfile.version>1.4.7</dockerfile.version>
<checkstyle.config.location>checkstyle.xml</checkstyle.config.location>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compile.source}</source>
<target>${maven.compile.target}</target>
<testSource>${maven.compile.test.source}</testSource>
<testTarget>${maven.compile.test.target}</testTarget>
</configuration>
<version>3.3</version>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.29</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<version>${dockerfile.version}</version>
<executions>
<execution>
<id>default</id>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
<configuration>
<repository>sematext/spm-client</repository>
<tag>${project.version}</tag>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.12</version>
<configuration>
<configLocation>${checkstyle.config.location}</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<modules>
<module>spm-monitor-utils</module>
<module>spm-thrift-data</module>
<module>spm-monitor-starter</module>
<module>spm-client-common-libs-parent</module>
<module>spm-monitor-parent</module>
<module>spm-client-common-libs</module>
<module>spm-monitor</module>
<module>spm-monitor-generic</module>
<module>spm-sender</module>
<module>spm-transfer</module>
<module>spm-monitor-redis</module>
<module>spm-monitor-storm</module>
<module>spm-tracing-agent</module>
<module>spm-tracing-testing</module>
<module>spm-tracing-agent-impl</module>
<module>spm-monitor-haproxy</module>
</modules>
<dependencies>
<!-- TEST -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>default</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>apache_dev_repo</id>
<url>https://repository.apache.org/snapshots</url>
</repository>
<repository>
<id>apache_dev_repo_alternate</id>
<url>https://people.apache.org/repo/m2-snapshot-repository/</url>
</repository>
<repository>
<id>java_net_repo</id>
<url>https://download.java.net/maven/2/</url>
</repository>
<repository>
<id>cdh-maven-repo</id>
<url>https://repository.cloudera.com/content/groups/public/</url>
</repository>
</repositories>
</project>