|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | +<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"> |
4 | 3 | <modelVersion>4.0.0</modelVersion> |
5 | 4 | <groupId>org.buddycloud</groupId> |
6 | 5 | <artifactId>channelserver</artifactId> |
7 | 6 | <packaging>jar</packaging> |
8 | 7 | <version>0.18.0-SNAPSHOT</version> |
9 | 8 | <name>Buddycloud Java Server</name> |
| 9 | + |
10 | 10 | <scm> |
| 11 | + <connection>scm:git:git@github.buddycloud/buddycloud-server-java.git</connection> |
| 12 | + <developerConnection>scm:git:git@github.com:buddycloud/buddycloud-server-java.git</developerConnection> |
11 | 13 | <url>https://github.com/buddycloud/buddycloud-server-java</url> |
12 | 14 | </scm> |
13 | 15 |
|
| 16 | + <issueManagement> |
| 17 | + <system>GitHub Issues</system> |
| 18 | + <url>https://github.com/buddycloud/buddycloud-server-java/issues</url> |
| 19 | + </issueManagement> |
| 20 | + <ciManagement> |
| 21 | + <system>travis</system> |
| 22 | + <url>https://travis-ci.org/buddycloud/buddycloud-server-java</url> |
| 23 | + </ciManagement> |
| 24 | + |
| 25 | + |
14 | 26 | <properties> |
15 | 27 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | 28 | <project.build.withDependencies>jar-with-dependencies</project.build.withDependencies> |
|
169 | 181 | <phase>test</phase> |
170 | 182 | <configuration> |
171 | 183 | <tasks unless="maven.test.skip"> |
172 | | - <junitreport |
173 | | - todir="target/surefire-reports"> |
174 | | - <fileset |
175 | | - dir="target/surefire-reports"> |
| 184 | + <junitreport todir="target/surefire-reports"> |
| 185 | + <fileset dir="target/surefire-reports"> |
176 | 186 | <include name="**/*.xml" /> |
177 | 187 | </fileset> |
178 | | - <report format="noframes" |
179 | | - todir="target/surefire-reports" /> |
| 188 | + <report format="noframes" todir="target/surefire-reports" /> |
180 | 189 | </junitreport> |
181 | 190 | </tasks> |
182 | 191 | </configuration> |
|
222 | 231 | <target>1.6</target> |
223 | 232 | </configuration> |
224 | 233 | </plugin> |
225 | | - <plugin> |
226 | | - <groupId>org.apache.maven.plugins</groupId> |
227 | | - <artifactId>maven-shade-plugin</artifactId> |
228 | | - <version>2.3</version> |
229 | | - <configuration> |
230 | | - <outputFile>${project.build.directory}/${project.build.finalName}-${project.build.withDependencies}.jar</outputFile> |
231 | | - <transformers> |
232 | | - <transformer |
233 | | - implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
234 | | - <mainClass>org.buddycloud.channelserver.Main</mainClass> |
235 | | - </transformer> |
236 | | - </transformers> |
237 | | - </configuration> |
238 | | - <executions> |
239 | | - <execution> |
240 | | - <phase>package</phase> |
241 | | - <goals> |
242 | | - <goal>shade</goal> |
243 | | - </goals> |
244 | | - </execution> |
245 | | - </executions> |
246 | | - </plugin> |
| 234 | + <plugin> |
| 235 | + <groupId>org.apache.maven.plugins</groupId> |
| 236 | + <artifactId>maven-shade-plugin</artifactId> |
| 237 | + <version>2.3</version> |
| 238 | + <configuration> |
| 239 | + <outputFile>${project.build.directory}/${project.build.finalName}-${project.build.withDependencies}.jar</outputFile> |
| 240 | + <transformers> |
| 241 | + <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 242 | + <mainClass>org.buddycloud.channelserver.Main</mainClass> |
| 243 | + </transformer> |
| 244 | + </transformers> |
| 245 | + </configuration> |
| 246 | + <executions> |
| 247 | + <execution> |
| 248 | + <phase>package</phase> |
| 249 | + <goals> |
| 250 | + <goal>shade</goal> |
| 251 | + </goals> |
| 252 | + </execution> |
| 253 | + </executions> |
| 254 | + </plugin> |
247 | 255 | <plugin> |
248 | 256 | <groupId>org.apache.maven.plugins</groupId> |
249 | 257 | <artifactId>maven-checkstyle-plugin</artifactId> |
|
267 | 275 | </execution> |
268 | 276 | </executions> |
269 | 277 | </plugin> |
| 278 | + <plugin> |
| 279 | + <groupId>org.codehaus.mojo</groupId> |
| 280 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 281 | + <version>2.6</version> |
| 282 | + </plugin> |
| 283 | + <plugin> |
| 284 | + <groupId>org.eluder.coveralls</groupId> |
| 285 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 286 | + <version>2.2.0</version> |
| 287 | + <configuration> |
| 288 | + <format>xml</format> |
| 289 | + <maxmem>256m</maxmem> |
| 290 | + <aggregate>true</aggregate> |
| 291 | + <sourceEncoding>UTF-8</sourceEncoding> |
| 292 | + </configuration> |
| 293 | + </plugin> |
270 | 294 | </plugins> |
271 | 295 | </pluginManagement> |
272 | 296 | </build> |
273 | 297 |
|
| 298 | + <reporting> |
| 299 | + <plugins> |
| 300 | + <plugin> |
| 301 | + <groupId>org.codehaus.mojo</groupId> |
| 302 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 303 | + <version>2.6</version> |
| 304 | + <configuration> |
| 305 | + <formats> |
| 306 | + <format>html</format> |
| 307 | + <format>xml</format> |
| 308 | + </formats> |
| 309 | + </configuration> |
| 310 | + </plugin> |
| 311 | + </plugins> |
| 312 | + </reporting> |
| 313 | + |
274 | 314 | </project> |
0 commit comments