pom.xml 4.4 KB

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