-
Notifications
You must be signed in to change notification settings - Fork 66
/
pom.xml
217 lines (211 loc) · 7.33 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<?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>org.apache.mesos</groupId>
<artifactId>storm-parent</artifactId>
<version>0.2.10-SNAPSHOT</version>
<name>storm-parent</name>
<packaging>pom</packaging>
<description>Storm integration with the Mesos cluster manager</description>
<scm>
<connection>scm:git:git://github.com/mesos/storm.git</connection>
<developerConnection>scm:git:ssh://git@github.com/mesos/storm.git</developerConnection>
<url>https://github.com/mesos/storm</url>
<tag>HEAD</tag>
</scm>
<modules>
<module>storm-shim</module>
<module>storm-shim-1x</module>
<module>storm</module>
</modules>
<properties>
<encoding>UTF-8</encoding>
<!-- language versions -->
<java.abi>1.7</java.abi>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<!-- These are used by bin/build-release.sh to determine which versions
should be used by default if MESOS_RELEASE and/or STORM_RELEASE
are not set. -->
<storm.default.version>1.0.6</storm.default.version>
<mesos.default.version>0.28.2</mesos.default.version>
<mesos.version>0.28.2</mesos.version>
</properties>
<profiles>
<profile>
<id>storm1.0</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<storm.version>1.0.6</storm.version>
<shim>storm-shim-1x</shim>
<snakeyaml.scope>compile</snakeyaml.scope>
</properties>
</profile>
</profiles>
<repositories>
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>clojars</id>
<url>http://clojars.org/repo/</url>
</repository>
<repository>
<id>mesosphere-public-repo</id>
<url>http://s3.amazonaws.com/mesosphere-maven-public</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<configuration>
<configLocation>config/checkstyle.xml</configLocation>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<mavenExecutorId>forked-path</mavenExecutorId>
<pushChanges>true</pushChanges>
<localCheckout>true</localCheckout>
<preparationGoals>clean install verify</preparationGoals>
<useReleaseProfile>false</useReleaseProfile>
<!-- use tags of the form "v0.1.3" instead of "storm-mesos-0.1.3" -->
<tagNameFormat>v@{project.version}</tagNameFormat>
<!-- XXX: Prevent `mvn release:perform` from doing anything, since we leverage
the release plugin merely to rev versions and commit tags.
i.e., when the release tag is pushed to the master branch of the mesos/storm
repo in GitHub, a travis-ci build is kicked off which automatically uploads
its artifacts to the GitHub project release page:
https://github.com/mesos/storm/releases
-->
<goals>help:help -q</goals>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.mesos</groupId>
<artifactId>mesos</artifactId>
<version>${mesos.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>org.apache.storm</groupId>
<artifactId>storm-core</artifactId>
<version>${storm.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.11</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>lang3</artifactId>
<version>3.0.3</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>1.6.6</version>
<exclusions>
<!-- slf4j-api is provided by storm-core. We might as well
use the one that is provided to us by storm rather than including
the slf4j-api classes in the jar.
WARNING: Please do *not* shade org.slf4j. Classes from org.slf4j
are referenced within log4j-over-slf4j and shading them
would lead to java.lang.NoClassDefFoundError -->
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.26</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.3</version>
<configuration>
<effort>Max</effort>
<threshold>Default</threshold>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
</plugins>
</reporting>
</project>