pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. </dependency>
  33. </dependencies>
  34. <build>
  35. <finalName>${project.artifactId}-${project.version}.${build.number}</finalName>
  36. <plugins>
  37. <plugin>
  38. <artifactId>maven-assembly-plugin</artifactId>
  39. <executions>
  40. <execution>
  41. <phase>package</phase>
  42. <goals>
  43. <goal>single</goal>
  44. </goals>
  45. </execution>
  46. </executions>
  47. <configuration>
  48. <finalName>${project.build.finalName}</finalName>
  49. <descriptorRefs>
  50. <descriptorRef>jar-with-dependencies</descriptorRef>
  51. </descriptorRefs>
  52. <archive>
  53. <manifest>
  54. <addClasspath>true</addClasspath>
  55. <mainClass>eu.tankernn.accounts.frame.MainFrame</mainClass>
  56. </manifest>
  57. <manifestEntries>
  58. <Implementation-Version>${build.number}</Implementation-Version>
  59. </manifestEntries>
  60. </archive>
  61. <finalName>${project.build.finalName}</finalName>
  62. <appendAssemblyId>false</appendAssemblyId>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. <properties>
  68. <maven.compiler.source>1.8</maven.compiler.source>
  69. <maven.compiler.target>1.8</maven.compiler.target>
  70. <build.number>SNAPSHOT</build.number>
  71. </properties>
  72. </project>