pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>eu.tankernn.accountmanager</groupId>
  5. <artifactId>eu.tankernn.accountmanager</artifactId>
  6. <version>1.0.0</version>
  7. <name>Account Manager</name>
  8. <description>A super-simple account management system.</description>
  9. <dependencies>
  10. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  11. <dependency>
  12. <groupId>com.google.code.gson</groupId>
  13. <artifactId>gson</artifactId>
  14. <version>2.7</version>
  15. </dependency>
  16. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  17. <dependency>
  18. <groupId>commons-codec</groupId>
  19. <artifactId>commons-codec</artifactId>
  20. <version>1.9</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>mysql</groupId>
  24. <artifactId>mysql-connector-java</artifactId>
  25. <version>5.1.39</version>
  26. </dependency>
  27. <!-- https://mvnrepository.com/artifact/junit/junit -->
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.12</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <!-- annotations from the Checker Framework: nullness, interning, locking,
  35. ... -->
  36. <dependency>
  37. <groupId>org.checkerframework</groupId>
  38. <artifactId>checker-qual</artifactId>
  39. <version>2.1.8</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.checkerframework</groupId>
  43. <artifactId>checker</artifactId>
  44. <version>2.1.8</version>
  45. </dependency>
  46. <!-- The type annotations compiler - uncomment if desired -->
  47. <!-- <dependency> <groupId>org.checkerframework</groupId> <artifactId>compiler</artifactId>
  48. <version>2.1.8</version> </dependency> -->
  49. <!-- The annotated JDK to use (change to jdk7 if using Java 7) -->
  50. <dependency>
  51. <groupId>org.checkerframework</groupId>
  52. <artifactId>jdk8</artifactId>
  53. <version>2.1.8</version>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <finalName>${project.artifactId}-${project.version}.${build.number}</finalName>
  58. <plugins>
  59. <plugin>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <version>3.3</version>
  62. <configuration>
  63. <!-- Change source and target to 1.7 if using Java 7 -->
  64. <source>1.8</source>
  65. <target>1.8</target>
  66. <fork>true</fork>
  67. <annotationProcessors>
  68. <!-- Add all the checkers you want to enable here -->
  69. <annotationProcessor>org.checkerframework.checker.nullness.NullnessChecker</annotationProcessor>
  70. </annotationProcessors>
  71. <compilerArgs>
  72. <!-- location of the annotated JDK, which comes from a Maven dependency -->
  73. <arg>-Xbootclasspath/p:${annotatedJdk}</arg>
  74. <!-- Uncomment the following line to use the type annotations compiler. -->
  75. <!-- <arg>-J-Xbootclasspath/p:${typeAnnotationsJavac}</arg> -->
  76. </compilerArgs>
  77. </configuration>
  78. </plugin>
  79. <plugin>
  80. <artifactId>maven-assembly-plugin</artifactId>
  81. <executions>
  82. <execution>
  83. <phase>package</phase>
  84. <goals>
  85. <goal>single</goal>
  86. </goals>
  87. </execution>
  88. </executions>
  89. <configuration>
  90. <finalName>${project.build.finalName}</finalName>
  91. <descriptorRefs>
  92. <descriptorRef>jar-with-dependencies</descriptorRef>
  93. </descriptorRefs>
  94. <archive>
  95. <manifest>
  96. <addClasspath>true</addClasspath>
  97. <mainClass>eu.tankernn.accounts.frame.MainFrame</mainClass>
  98. </manifest>
  99. <manifestEntries>
  100. <Implementation-Version>${build.number}</Implementation-Version>
  101. </manifestEntries>
  102. </archive>
  103. <finalName>${project.build.finalName}</finalName>
  104. <appendAssemblyId>false</appendAssemblyId>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.jacoco</groupId>
  109. <artifactId>jacoco-maven-plugin</artifactId>
  110. <version>0.7.7.201606060606</version>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>prepare-agent</goal>
  115. </goals>
  116. </execution>
  117. <execution>
  118. <id>report</id>
  119. <phase>test</phase>
  120. <goals>
  121. <goal>report</goal>
  122. </goals>
  123. </execution>
  124. </executions>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. <properties>
  129. <!-- These properties will be set by the Maven Dependency plugin -->
  130. <!-- Change to jdk7 if using Java 7 -->
  131. <annotatedJdk>${org.checkerframework:jdk8:jar}</annotatedJdk>
  132. <!-- Uncomment to use the type annotations compiler. -->
  133. <!-- <typeAnnotationsJavac>${org.checkerframework:compiler:jar}</typeAnnotationsJavac> -->
  134. <maven.compiler.source>1.8</maven.compiler.source>
  135. <maven.compiler.target>1.8</maven.compiler.target>
  136. <build.number>SNAPSHOT</build.number>
  137. </properties>
  138. </project>