55 lines
1.9 KiB
XML
55 lines
1.9 KiB
XML
<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.6.2-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.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>
|
||
<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> |