pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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>net.sourceforge.jmeasurement2</groupId>
  6. <artifactId>MCSUtils</artifactId>
  7. <version>1.0.152</version>
  8. <name>${project.groupId}:${project.artifactId}</name>
  9. <description>Assorted utils for mcs java applications</description>
  10. <url>http://www.wk-music.de</url>
  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. <scm>
  26. <url>https://wkla.no-ip.biz/gogs/Willie/MCSUtils/</url>
  27. <connection>scm:git:https://wkla.no-ip.biz/gogs/Willie/MCSUtils.git/</connection>
  28. <developerConnection>scm:svn:https://wkla.no-ip.biz/gogs/Willie/MCSUtils/</developerConnection>
  29. </scm>
  30. <properties>
  31. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  32. <gpg.skip>false</gpg.skip>
  33. </properties>
  34. <distributionManagement>
  35. <snapshotRepository>
  36. <id>ossrh</id>
  37. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  38. </snapshotRepository>
  39. <repository>
  40. <id>ossrh</id>
  41. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  42. </repository>
  43. </distributionManagement>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-source-plugin</artifactId>
  49. <version>2.4</version>
  50. <executions>
  51. <execution>
  52. <id>attach-sources</id>
  53. <goals>
  54. <goal>jar</goal>
  55. </goals>
  56. </execution>
  57. </executions>
  58. </plugin>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-javadoc-plugin</artifactId>
  62. <version>2.10.3</version>
  63. <executions>
  64. <execution>
  65. <id>attach-javadocs</id>
  66. <goals>
  67. <goal>jar</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. <plugin>
  73. <artifactId>maven-compiler-plugin</artifactId>
  74. <version>3.3</version>
  75. <configuration>
  76. <source>1.8</source>
  77. <target>1.8</target>
  78. </configuration>
  79. </plugin>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-surefire-plugin</artifactId>
  83. <version>2.12.4</version>
  84. <configuration>
  85. <skipTests>true</skipTests>
  86. </configuration>
  87. </plugin>
  88. <plugin>
  89. <groupId>org.apache.maven.plugins</groupId>
  90. <artifactId>maven-gpg-plugin</artifactId>
  91. <version>1.6</version>
  92. <executions>
  93. <execution>
  94. <id>sign-artifacts</id>
  95. <phase>verify</phase>
  96. <goals>
  97. <goal>sign</goal>
  98. </goals>
  99. </execution>
  100. </executions>
  101. </plugin>
  102. <plugin>
  103. <groupId>org.sonatype.plugins</groupId>
  104. <artifactId>nexus-staging-maven-plugin</artifactId>
  105. <version>1.6.3</version>
  106. <extensions>true</extensions>
  107. <configuration>
  108. <serverId>ossrh</serverId>
  109. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  110. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  111. </configuration>
  112. </plugin>
  113. </plugins>
  114. </build>
  115. <dependencies>
  116. <dependency>
  117. <groupId>junit</groupId>
  118. <artifactId>junit</artifactId>
  119. <version>4.12</version>
  120. <scope>test</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>junit-addons</groupId>
  124. <artifactId>junit-addons</artifactId>
  125. <version>1.4</version>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.martiansoftware</groupId>
  130. <artifactId>jsap</artifactId>
  131. <version>2.1</version>
  132. <scope>provided</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.sun.activation</groupId>
  136. <artifactId>javax.activation</artifactId>
  137. <version>1.2.0</version>
  138. </dependency>
  139. </dependencies>
  140. </project>