EasyCaptcha/pom.xml

55 lines
1.9 KiB
XML
Raw Permalink Normal View History

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"
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>
2019-04-22 11:27:52 +08:00
<artifactId>easy-captcha</artifactId>
<version>1.6.2-RELEASE</version>
<packaging>jar</packaging>
<name>EasyCaptcha</name>
2018-07-28 10:26:10 +08:00
<description>Java图形验证码支持gif验证码、中文验证码适用于Java Web、JavaSE项目。</description>
<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>
<version>4.12</version>
<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>
</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>