1
0
mirror of synced 2026-02-15 23:17:47 +08:00
Files
EasyCaptcha/pom.xml
whvcse@foxmail.com eec51ec8be 优化验证码效果
2019-04-22 11:27:52 +08:00

55 lines
1.9 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>
<groupId>org.wf</groupId>
<artifactId>easy-captcha</artifactId>
<version>1.5.0-RELEASE</version>
<packaging>jar</packaging>
<name>EasyCaptcha</name>
<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.7</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>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<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>
</project>