dependency-reduced-pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>de.mcs.tools.sps</groupId>
  5. <artifactId>SPSEmulator</artifactId>
  6. <name>${project.groupId}:${project.artifactId}</name>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <description>SPS Emulator wirtten in java.</description>
  9. <url>http://www.wk-music.de</url>
  10. <developers>
  11. <developer>
  12. <name>Wilfried Klaas</name>
  13. <email>w.klaas@gmx.de</email>
  14. <organization>MCS</organization>
  15. <organizationUrl>http://www.wk-music.de</organizationUrl>
  16. </developer>
  17. </developers>
  18. <licenses>
  19. <license>
  20. <name>The Apache License, Version 2.0</name>
  21. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  22. </license>
  23. </licenses>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <artifactId>maven-compiler-plugin</artifactId>
  28. <version>3.3</version>
  29. <configuration>
  30. <source>1.8</source>
  31. <target>1.8</target>
  32. </configuration>
  33. </plugin>
  34. <plugin>
  35. <artifactId>maven-surefire-plugin</artifactId>
  36. <version>2.19.1</version>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.junit.platform</groupId>
  40. <artifactId>junit-platform-surefire-provider</artifactId>
  41. <version>1.1.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.junit.jupiter</groupId>
  45. <artifactId>junit-jupiter-engine</artifactId>
  46. <version>5.1.0</version>
  47. </dependency>
  48. </dependencies>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-jar-plugin</artifactId>
  52. <version>2.6</version>
  53. <configuration>
  54. <archive>
  55. <manifest>
  56. <mainClass>de.mcs.tools.sps.SPSAssembler</mainClass>
  57. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  58. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  59. </manifest>
  60. <manifestEntries>
  61. <Build-Time>${maven.build.timestamp}</Build-Time>
  62. <Application-Name>SPSTools</Application-Name>
  63. <Application-Update-Id>72</Application-Update-Id>
  64. <Application-Update-Url>http\://wkla.no-ip.biz/downloader/version.php?ID\=73</Application-Update-Url>
  65. <Application-Url>http\://wkla.no-ip.biz/</Application-Url>
  66. <Implementation-Vendor>MCS, Media Computer Software</Implementation-Vendor>
  67. </manifestEntries>
  68. </archive>
  69. </configuration>
  70. </plugin>
  71. <plugin>
  72. <artifactId>maven-shade-plugin</artifactId>
  73. <version>2.4.1</version>
  74. <executions>
  75. <execution>
  76. <phase>package</phase>
  77. <goals>
  78. <goal>shade</goal>
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. <plugin>
  84. <groupId>com.akathist.maven.plugins.launch4j</groupId>
  85. <artifactId>launch4j-maven-plugin</artifactId>
  86. <version>1.7.24</version>
  87. <executions>
  88. <execution>
  89. <id>l4j-clui</id>
  90. <phase>package</phase>
  91. <goals>
  92. <goal>launch4j</goal>
  93. </goals>
  94. <configuration>
  95. <dontWrapJar>false</dontWrapJar>
  96. <headerType>console</headerType>
  97. <jar>${project.build.directory}/${project.artifactId}-${project.version}.jar</jar>
  98. <outfile>${project.build.directory}/MCSSPSTools.exe</outfile>
  99. <downloadUrl>http://java.com/download</downloadUrl>
  100. <icon>src\main\resources\MSA.ico</icon>
  101. <jre>
  102. <path>/jre</path>
  103. <minVersion>1.8.0</minVersion>
  104. <jdkPreference>jreOnly</jdkPreference>
  105. </jre>
  106. <versionInfo>
  107. <fileVersion>1.0.0.0</fileVersion>
  108. <txtFileVersion>${project.version}</txtFileVersion>
  109. <fileDescription>${project.name}</fileDescription>
  110. <copyright>2018 MCS</copyright>
  111. <productVersion>1.0.0.0</productVersion>
  112. <txtProductVersion>1.0.0.0</txtProductVersion>
  113. <productName>${project.name}</productName>
  114. <companyName>MCS</companyName>
  115. <internalName>MCSSPSTools</internalName>
  116. <originalFilename>MCSSPSTools.exe</originalFilename>
  117. </versionInfo>
  118. </configuration>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. <dependencies>
  125. <dependency>
  126. <groupId>org.junit.jupiter</groupId>
  127. <artifactId>junit-jupiter-api</artifactId>
  128. <version>5.1.0</version>
  129. <scope>test</scope>
  130. <exclusions>
  131. <exclusion>
  132. <artifactId>apiguardian-api</artifactId>
  133. <groupId>org.apiguardian</groupId>
  134. </exclusion>
  135. <exclusion>
  136. <artifactId>opentest4j</artifactId>
  137. <groupId>org.opentest4j</groupId>
  138. </exclusion>
  139. <exclusion>
  140. <artifactId>junit-platform-commons</artifactId>
  141. <groupId>org.junit.platform</groupId>
  142. </exclusion>
  143. </exclusions>
  144. </dependency>
  145. </dependencies>
  146. <properties>
  147. <maven.build.timestamp.format>dd.mm.yyyy HH:mm</maven.build.timestamp.format>
  148. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  149. <jackson.version>2.8.5</jackson.version>
  150. <timestamp>${maven.build.timestamp}</timestamp>
  151. </properties>
  152. </project>