pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (c) 2009, 2012 Mountainminds GmbH & Co. KG and Contributors
  4. All rights reserved. This program and the accompanying materials
  5. are made available under the terms of the Eclipse Public License v1.0
  6. which accompanies this distribution, and is available at
  7. http://www.eclipse.org/legal/epl-v10.html
  8. Contributors:
  9. Marc R. Hoffmann - initial API and implementation
  10. -->
  11. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  12. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  13. <modelVersion>4.0.0</modelVersion>
  14. <groupId>eu.tankernn</groupId>
  15. <artifactId>eu.tankernn.chat</artifactId>
  16. <version>3.1-SNAPSHOT</version>
  17. <packaging>jar</packaging>
  18. <name>TankernnChat</name>
  19. <url>https://github.com/Tankernn/TankernnChat</url>
  20. <dependencies>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>4.10</version>
  25. <scope>test</scope>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <sourceDirectory>src/main/java</sourceDirectory>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.jacoco</groupId>
  33. <artifactId>jacoco-maven-plugin</artifactId>
  34. <version>0.5.8.201207111220</version>
  35. <executions>
  36. <execution>
  37. <goals>
  38. <goal>prepare-agent</goal>
  39. </goals>
  40. </execution>
  41. <execution>
  42. <id>report</id>
  43. <phase>test</phase>
  44. <goals>
  45. <goal>report</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>