pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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-model</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <description>SPSEmulator-model</description>
  8. <name>${project.groupId}:${project.artifactId}</name>
  9. <url>http://www.wk-music.de</url>
  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.8</jackson.version>
  29. <jersey.client.version>2.28</jersey.client.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> <version>1.7.24</version>
  99. <executions> <execution> <id>l4j-clui</id> <phase>package</phase> <goals> <goal>launch4j</goal> </goals> <configuration>
  100. <dontWrapJar>false</dontWrapJar> <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> <classPath>
  102. <mainClass>com.howtodoinjava.ApplicationMain</mainClass> <preCp>anything</preCp> </classPath> <icon>src\main\resources\MSA.ico</icon>
  103. <jre> <path>/jre</path> <minVersion>1.8.0</minVersion> <jdkPreference>jreOnly</jdkPreference> </jre> <versionInfo> <fileVersion>1.0.0.0</fileVersion>
  104. <txtFileVersion>${project.version}</txtFileVersion> <fileDescription>${project.name}</fileDescription> <copyright>2018 MCS</copyright>
  105. <productVersion>1.0.0.0</productVersion> <txtProductVersion>1.0.0.0</txtProductVersion> <productName>${project.name}</productName>
  106. <companyName>MCS</companyName> <internalName>MCSSPSTools</internalName> <originalFilename>MCSSPSTools.exe</originalFilename>
  107. </versionInfo> </configuration> </execution> </executions> </plugin> -->
  108. </plugins>
  109. </build>
  110. <dependencies>
  111. <dependency>
  112. <groupId>net.sourceforge.jmeasurement2</groupId>
  113. <artifactId>MCSUtils</artifactId>
  114. <version>1.0.152</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.junit.jupiter</groupId>
  118. <artifactId>junit-jupiter-api</artifactId>
  119. <version>5.1.1</version>
  120. <scope>test</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>net.sourceforge.jmeasurement2</groupId>
  124. <artifactId>JMeasurement</artifactId>
  125. <version>1.1.225</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.commons</groupId>
  129. <artifactId>commons-lang3</artifactId>
  130. <version>3.4</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.fasterxml.jackson.core</groupId>
  134. <artifactId>jackson-core</artifactId>
  135. <version>${jackson.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>com.fasterxml.jackson.core</groupId>
  139. <artifactId>jackson-annotations</artifactId>
  140. <version>${jackson.version}</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.fasterxml.jackson.core</groupId>
  144. <artifactId>jackson-databind</artifactId>
  145. <version>${jackson.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.fasterxml.jackson.dataformat</groupId>
  149. <artifactId>jackson-dataformat-yaml</artifactId>
  150. <version>${jackson.version}</version>
  151. </dependency>
  152. </dependencies>
  153. </project>