pom.xml 1.9 KB

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