2018-02-11 14:53:59 +08:00
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-27 12:02:33 +08:00
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
2019-04-22 11:27:52 +08:00
|
|
|
|
<groupId>org.wf</groupId>
|
2018-07-27 12:02:33 +08:00
|
|
|
|
|
2019-04-22 11:27:52 +08:00
|
|
|
|
<artifactId>easy-captcha</artifactId>
|
2019-08-25 15:29:08 +08:00
|
|
|
|
<version>1.6.2-RELEASE</version>
|
2018-07-27 12:02:33 +08:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>EasyCaptcha</name>
|
2018-07-28 10:26:10 +08:00
|
|
|
|
<description>Java图形验证码,支持gif验证码、中文验证码,适用于Java Web、JavaSE项目。</description>
|
2018-07-27 12:02:33 +08:00
|
|
|
|
<url>https://github.com/whvcse/EasyCaptcha</url>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- j2ee环境 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
2019-08-23 23:50:26 +08:00
|
|
|
|
<version>4.12</version>
|
2018-07-27 12:02:33 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>6</source>
|
|
|
|
|
<target>6</target>
|
2018-07-27 15:11:34 +08:00
|
|
|
|
<encoding>UTF-8</encoding>
|
2018-07-27 12:02:33 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2019-04-22 11:27:52 +08:00
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>rdc-releases</id>
|
|
|
|
|
<url>https://repo.rdc.aliyun.com/repository/70786-release-exL3mB/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>rdc-snapshots</id>
|
|
|
|
|
<url>https://repo.rdc.aliyun.com/repository/70786-snapshot-Y0tgOa/</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
2018-02-11 14:53:59 +08:00
|
|
|
|
</project>
|