Download kaptcha-0.0.9.jar file

Introduction

You can download kaptcha-0.0.9.jar in this page.

License

Apache License v2.0

Type List

kaptcha-0.0.9.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.axet/kaptcha/pom.properties
META-INF/maven/com.github.axet/kaptcha/pom.xml
com.google.code.kaptcha.BackgroundProducer.class
com.google.code.kaptcha.Constants.class
com.google.code.kaptcha.GimpyEngine.class
com.google.code.kaptcha.NoiseProducer.class
com.google.code.kaptcha.Producer.class
com.google.code.kaptcha.impl.DefaultBackground.class
com.google.code.kaptcha.impl.DefaultKaptcha.class
com.google.code.kaptcha.impl.DefaultNoise.class
com.google.code.kaptcha.impl.FishEyeGimpy.class
com.google.code.kaptcha.impl.NoNoise.class
com.google.code.kaptcha.impl.ShadowGimpy.class
com.google.code.kaptcha.impl.WaterRipple.class
com.google.code.kaptcha.servlet.KaptchaExtend.class
com.google.code.kaptcha.servlet.KaptchaServlet.class
com.google.code.kaptcha.text.TextProducer.class
com.google.code.kaptcha.text.WordRenderer.class
com.google.code.kaptcha.text.impl.ChineseTextProducer.class
com.google.code.kaptcha.text.impl.DefaultTextCreator.class
com.google.code.kaptcha.text.impl.DefaultWordRenderer.class
com.google.code.kaptcha.text.impl.FiveLetterFirstNameTextCreator.class
com.google.code.kaptcha.util.Config.class
com.google.code.kaptcha.util.ConfigException.class
com.google.code.kaptcha.util.ConfigHelper.class
com.google.code.kaptcha.util.Configurable.class

Pom

kaptcha-0.0.9.pom file content.

<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.github.axet</groupId>
  <artifactId>kaptcha</artifactId>
  <packaging>jar</packaging>
  <version>0.0.9</version>
  <name>kaptcha</name>
  <description>A web kaptcha generation engine</description>
  <url>https://github.com/axet/kaptcha</url>
  <licenses>
    <license>
      <name>Apache License v2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>https://github.com/axet/kaptcha</url>
    <connection>scm:git:https://github.com/axet/kaptcha</connection>
  </scm>
  
  <distributionManagement>
    <snapshotRepository>
      <id>sonatype-nexus-snapshots</id>
      <name>Sonatype Nexus Snapshots</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>sonatype-nexus-staging</id>
      <name>Nexus Staging Repository</name>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
  </distributionManagement>

  <developers>
    <developer>
      <id>axet</id>
      <name>Alexey Kuznetsov</name>
      <email>ak@axet.ru</email>
    </developer>
  </developers>

  <dependencies>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.5</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.jhlabs</groupId>
      <artifactId>filters</artifactId>
      <version>2.0.235</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <phase>deploy</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <phase>deploy</phase>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <configuration>
          <useAgent>true</useAgent>
        </configuration>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>deploy</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-deploy-plugin</artifactId>
        <executions>
          <execution>
            <id>deploy</id>
            <phase>deploy</phase>
            <goals>
              <goal>deploy</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-resources-plugin</artifactId>
        <version>2.4.3</version>
        <configuration>
          <encoding>UTF-8</encoding>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <encoding>UTF-8</encoding>
        </configuration>
      </plugin>
    </plugins>
  </build>

</project>

POM Entry

<dependency>
   <groupId>com.github.axet</groupId>
   <artifactId>kaptcha</artifactId>
   <version>0.0.9</version>
</dependency>

Download

If you think the following kaptcha-0.0.9.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download kaptcha-0.0.9.jar file




PreviousNext

Related