kaptcha-2.3.3.pom 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed under the Apache License, Version 2.0 (the "License");
  4. ~ you may not use this file except in compliance with the License.
  5. ~ You may obtain a copy of the License at
  6. ~
  7. ~ http://www.apache.org/licenses/LICENSE-2.0
  8. ~
  9. ~ Unless required by applicable law or agreed to in writing, software
  10. ~ distributed under the License is distributed on an "AS IS" BASIS,
  11. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. ~ See the License for the specific language governing permissions and
  13. ~ limitations under the License.
  14. -->
  15. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  16. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  17. <modelVersion>4.0.0</modelVersion>
  18. <groupId>pro.fessional</groupId>
  19. <artifactId>kaptcha</artifactId>
  20. <version>2.3.3</version>
  21. <packaging>jar</packaging>
  22. <name>kaptcha</name>
  23. <description>clone of kaptcha</description>
  24. <url>https://github.com/trydofor/kaptcha</url>
  25. <developers>
  26. <developer>
  27. <name>penggle</name>
  28. <url>https://github.com/penggle</url>
  29. </developer>
  30. <developer>
  31. <name>imac-beep</name>
  32. <url>https://github.com/imac-beep</url>
  33. </developer>
  34. <developer>
  35. <name>Trydofor</name>
  36. <url>https://github.com/trydofor</url>
  37. </developer>
  38. </developers>
  39. <licenses>
  40. <license>
  41. <name>The Apache Software License, Version 2.0</name>
  42. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  43. </license>
  44. </licenses>
  45. <scm>
  46. <connection>scm:git:git@github.com:trydofor/kaptcha.git</connection>
  47. <url>scm:git:git@github.com:trydofor/kaptcha.git</url>
  48. <developerConnection>scm:git:git@github.com:trydofor/kaptcha.git</developerConnection>
  49. <tag>1.x</tag>
  50. </scm>
  51. <issueManagement>
  52. <system>github</system>
  53. <url>https://github.com/trydofor/kaptcha/issues</url>
  54. </issueManagement>
  55. <properties>
  56. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  57. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  58. <maven.compiler.source>1.5</maven.compiler.source>
  59. <maven.compiler.target>1.5</maven.compiler.target>
  60. <maven.test.skip>true</maven.test.skip>
  61. <deploy.private.repository>true</deploy.private.repository>
  62. </properties>
  63. <dependencies>
  64. <dependency>
  65. <groupId>com.jhlabs</groupId>
  66. <artifactId>filters</artifactId>
  67. <version>2.0.235-1</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>javax.servlet</groupId>
  71. <artifactId>servlet-api</artifactId>
  72. <version>2.5</version>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <artifactId>maven-resources-plugin</artifactId>
  80. <version>3.1.0</version>
  81. <configuration>
  82. <encoding>${project.build.sourceEncoding}</encoding>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-compiler-plugin</artifactId>
  88. <version>3.8.1</version>
  89. <configuration>
  90. <source>${maven.compiler.source}</source>
  91. <target>${maven.compiler.target}</target>
  92. <encoding>${project.build.sourceEncoding}</encoding>
  93. </configuration>
  94. </plugin>
  95. <plugin>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <artifactId>maven-jar-plugin</artifactId>
  98. <version>3.2.0</version>
  99. <configuration>
  100. <archive>
  101. <manifestEntries>
  102. <Main-Class>pro.fessional.WhoAmI</Main-Class>
  103. </manifestEntries>
  104. </archive>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-source-plugin</artifactId>
  110. <version>3.1.0</version>
  111. <executions>
  112. <execution>
  113. <id>attach-sources</id>
  114. <goals>
  115. <goal>jar-no-fork</goal>
  116. </goals>
  117. </execution>
  118. </executions>
  119. </plugin>
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-surefire-plugin</artifactId>
  123. <version>2.22.2</version>
  124. </plugin>
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-javadoc-plugin</artifactId>
  128. <version>3.1.0</version>
  129. <configuration>
  130. <additionalJOption>-Xdoclint:none</additionalJOption>
  131. </configuration>
  132. <executions>
  133. <execution>
  134. <id>attach-javadocs</id>
  135. <goals>
  136. <goal>jar</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-gpg-plugin</artifactId>
  144. <version>1.6</version>
  145. <configuration>
  146. <skip>${deploy.private.repository}</skip>
  147. </configuration>
  148. <executions>
  149. <execution>
  150. <id>sign-artifacts</id>
  151. <phase>verify</phase>
  152. <goals>
  153. <goal>sign</goal>
  154. </goals>
  155. <configuration>
  156. <keyname>541B1728468267BFA83FE092CE8F6F63A835DB68</keyname>
  157. </configuration>
  158. </execution>
  159. </executions>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.apache.maven.plugins</groupId>
  163. <artifactId>maven-deploy-plugin</artifactId>
  164. <version>2.8.2</version>
  165. </plugin>
  166. <!-- ci -->
  167. <plugin>
  168. <groupId>org.eluder.coveralls</groupId>
  169. <artifactId>coveralls-maven-plugin</artifactId>
  170. <version>4.3.0</version>
  171. <configuration>
  172. <repoToken>${env.REPO_TOKEN}</repoToken>
  173. </configuration>
  174. </plugin>
  175. <plugin>
  176. <groupId>org.jacoco</groupId>
  177. <artifactId>jacoco-maven-plugin</artifactId>
  178. <version>0.8.4</version>
  179. <executions>
  180. <execution>
  181. <id>prepare-agent</id>
  182. <goals>
  183. <goal>prepare-agent</goal>
  184. </goals>
  185. </execution>
  186. </executions>
  187. </plugin>
  188. </plugins>
  189. </build>
  190. <distributionManagement>
  191. <snapshotRepository>
  192. <id>ossrh</id>
  193. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  194. </snapshotRepository>
  195. <repository>
  196. <id>ossrh</id>
  197. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  198. </repository>
  199. </distributionManagement>
  200. </project>