mirror of
https://github.com/whvcse/EasyCaptcha.git
synced 2024-11-23 01:59:19 +08:00
优化验证码效果
This commit is contained in:
parent
a36969c71d
commit
eec51ec8be
@ -7,7 +7,7 @@
|
|||||||
</list>
|
</list>
|
||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="false" project-jdk-name="1.8" project-jdk-type="JavaSDK">
|
||||||
<output url="file://$PROJECT_DIR$/classes" />
|
<output url="file://$PROJECT_DIR$/classes" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
98
pom.xml
98
pom.xml
@ -2,9 +2,9 @@
|
|||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>com.github.whvcse</groupId>
|
<groupId>org.wf</groupId>
|
||||||
|
|
||||||
<artifactId>EasyCaptcha</artifactId>
|
<artifactId>easy-captcha</artifactId>
|
||||||
<version>1.5.0-RELEASE</version>
|
<version>1.5.0-RELEASE</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
@ -12,14 +12,6 @@
|
|||||||
<description>Java图形验证码,支持gif验证码、中文验证码,适用于Java Web、JavaSE项目。</description>
|
<description>Java图形验证码,支持gif验证码、中文验证码,适用于Java Web、JavaSE项目。</description>
|
||||||
<url>https://github.com/whvcse/EasyCaptcha</url>
|
<url>https://github.com/whvcse/EasyCaptcha</url>
|
||||||
|
|
||||||
<licenses>
|
|
||||||
<license>
|
|
||||||
<name>The Apache Software License, Version 2.0</name>
|
|
||||||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
||||||
<distribution>repo</distribution>
|
|
||||||
</license>
|
|
||||||
</licenses>
|
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- j2ee环境 -->
|
<!-- j2ee环境 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -49,81 +41,15 @@
|
|||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<!--
|
|
||||||
<scm>
|
|
||||||
<url>https://github.com/whvcse/EasyCaptcha</url>
|
|
||||||
<connection>https://github.com/whvcse/EasyCaptcha.git</connection>
|
|
||||||
<developerConnection>https://github.com/whvcse/EasyCaptcha</developerConnection>
|
|
||||||
</scm>
|
|
||||||
|
|
||||||
<developers>
|
<distributionManagement>
|
||||||
<developer>
|
<repository>
|
||||||
<name>whvcse</name>
|
<id>rdc-releases</id>
|
||||||
<email>whvcse@foxmail.com</email>
|
<url>https://repo.rdc.aliyun.com/repository/70786-release-exL3mB/</url>
|
||||||
<url>https://github.com/whvcse</url>
|
</repository>
|
||||||
</developer>
|
<snapshotRepository>
|
||||||
</developers>
|
<id>rdc-snapshots</id>
|
||||||
|
<url>https://repo.rdc.aliyun.com/repository/70786-snapshot-Y0tgOa/</url>
|
||||||
<distributionManagement>
|
</snapshotRepository>
|
||||||
<snapshotRepository>
|
</distributionManagement>
|
||||||
<id>ossrh</id>
|
|
||||||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
||||||
</snapshotRepository>
|
|
||||||
<repository>
|
|
||||||
<id>ossrh</id>
|
|
||||||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
||||||
</repository>
|
|
||||||
</distributionManagement>
|
|
||||||
|
|
||||||
<profiles>
|
|
||||||
<profile>
|
|
||||||
<id>release</id>
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<!– Source –>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-source-plugin</artifactId>
|
|
||||||
<version>2.2.1</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>attach-sources</id>
|
|
||||||
<goals>
|
|
||||||
<goal>jar-no-fork</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<!– Javadoc –>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-javadoc-plugin</artifactId>
|
|
||||||
<version>2.9.1</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>attach-javadocs</id>
|
|
||||||
<goals>
|
|
||||||
<goal>jar</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-gpg-plugin</artifactId>
|
|
||||||
<version>1.5</version>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>sign-artifacts</id>
|
|
||||||
<phase>verify</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>sign</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
</profile>
|
|
||||||
</profiles>-->
|
|
||||||
</project>
|
</project>
|
Loading…
Reference in New Issue
Block a user