pom.xml 8.1 KB

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