pom.xml 6.7 KB

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