UserAgentUtils-1.19.pom 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>eu.bitwalker</groupId>
  7. <name>User-Agent-Utils</name>
  8. <url>http://www.bitwalker.eu/software/user-agent-utils</url>
  9. <artifactId>UserAgentUtils</artifactId>
  10. <version>1.19</version>
  11. <description>Utility classes to handle user-agents.</description>
  12. <properties>
  13. <github.global.server>github</github.global.server>
  14. </properties>
  15. <licenses>
  16. <license>
  17. <name>New BSD License</name>
  18. <url>
  19. http://user-agent-utils.googlecode.com/svn/trunk/UserAgentUtils/LICENSE.txt
  20. </url>
  21. <distribution>repo</distribution>
  22. </license>
  23. </licenses>
  24. <developers>
  25. <developer>
  26. <id>haraldwalker</id>
  27. <name>Harald Walker</name>
  28. <url>http://www.bitwalker.eu</url>
  29. <roles>
  30. <role>developer</role>
  31. </roles>
  32. <timezone>-2</timezone>
  33. </developer>
  34. </developers>
  35. <issueManagement>
  36. <url>https://github.com/HaraldWalker/user-agent-utils/issues</url>
  37. <system>GitHub</system>
  38. </issueManagement>
  39. <scm>
  40. <url>https://github.com/HaraldWalker/user-agent-utils</url>
  41. <connection>scm:git:git://github.com:HaraldWalker/user-agent-utils.git</connection>
  42. <developerConnection>scm:git:git@github.com:HaraldWalker/user-agent-utils.git</developerConnection>
  43. </scm>
  44. <distributionManagement>
  45. <snapshotRepository>
  46. <id>ossrh</id>
  47. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  48. </snapshotRepository>
  49. <repository>
  50. <id>ossrh</id>
  51. <name>Maven Central Staging Repository</name>
  52. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  53. </repository>
  54. </distributionManagement>
  55. <build>
  56. <finalName>${project.artifactId}-${project.version}</finalName>
  57. <plugins>
  58. <plugin>
  59. <artifactId>maven-compiler-plugin</artifactId>
  60. <version>3.1</version>
  61. <configuration>
  62. <source>1.6</source>
  63. <target>1.6</target>
  64. </configuration>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.sonatype.plugins</groupId>
  68. <artifactId>nexus-staging-maven-plugin</artifactId>
  69. <version>1.6.3</version>
  70. <extensions>true</extensions>
  71. <configuration>
  72. <serverId>ossrh</serverId>
  73. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  74. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <artifactId>maven-site-plugin</artifactId>
  79. <version>3.4</version>
  80. <configuration>
  81. <outputDirectory>
  82. site/
  83. </outputDirectory>
  84. </configuration>
  85. </plugin>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-javadoc-plugin</artifactId>
  89. <version>2.10.3</version>
  90. <configuration>
  91. <destDir>javadoc</destDir>
  92. <excludes>
  93. <exclude>**/Test*.java</exclude>
  94. </excludes>
  95. </configuration>
  96. <executions>
  97. <execution>
  98. <id>attach-javadocs</id>
  99. <goals>
  100. <goal>jar</goal>
  101. </goals>
  102. </execution>
  103. </executions>
  104. </plugin>
  105. <plugin>
  106. <artifactId>maven-surefire-plugin</artifactId>
  107. <version>2.4</version>
  108. <configuration>
  109. <useFile>true</useFile>
  110. <argLine>-ea</argLine>
  111. <excludes>
  112. <exclude>**/Test*.java</exclude>
  113. </excludes>
  114. </configuration>
  115. </plugin>
  116. <plugin>
  117. <artifactId>maven-install-plugin</artifactId>
  118. <version>2.5.2</version>
  119. </plugin>
  120. <plugin>
  121. <artifactId>maven-resources-plugin</artifactId>
  122. <version>2.7</version>
  123. </plugin>
  124. <plugin>
  125. <groupId>org.apache.maven.plugins</groupId>
  126. <artifactId>maven-source-plugin</artifactId>
  127. <executions>
  128. <execution>
  129. <id>attach-sources</id>
  130. <goals>
  131. <goal>jar-no-fork</goal>
  132. </goals>
  133. </execution>
  134. </executions>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-gpg-plugin</artifactId>
  139. <version>1.6</version>
  140. <configuration>
  141. <useAgent>true</useAgent>
  142. </configuration>
  143. <executions>
  144. <execution>
  145. <id>sign-artifacts</id>
  146. <phase>verify</phase>
  147. <goals>
  148. <goal>sign</goal>
  149. </goals>
  150. </execution>
  151. </executions>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. <reporting>
  156. <outputDirectory>site</outputDirectory>
  157. <plugins>
  158. <plugin>
  159. <artifactId>maven-javadoc-plugin</artifactId>
  160. <version>2.10.3</version>
  161. <configuration>
  162. <destDir>javadoc2</destDir>
  163. <excludes>
  164. <exclude>**/Test*.java</exclude>
  165. </excludes>
  166. <sourcepath>src/main/java</sourcepath>
  167. <subpackages>eu.bitwalker.useragentutils</subpackages>
  168. <source>1.6</source>
  169. </configuration>
  170. </plugin>
  171. <plugin>
  172. <artifactId>
  173. maven-project-info-reports-plugin
  174. </artifactId>
  175. <version>2.7</version>
  176. </plugin>
  177. </plugins>
  178. </reporting>
  179. <dependencies>
  180. <dependency>
  181. <groupId>junit</groupId>
  182. <artifactId>junit</artifactId>
  183. <version>4.12</version>
  184. <scope>test</scope>
  185. </dependency>
  186. </dependencies>
  187. </project>