gwt-recaptcha
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.claudiushauptmann</groupId>
<artifactId>gwt-recaptcha</artifactId>
<version>1.0.0.Beta2</version>
</dependency><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> <!-- The Basics --> <groupId>com.claudiushauptmann</groupId> <artifactId>gwt-recaptcha</artifactId> <version>1.0.0.Beta2</version> <packaging>jar</packaging> <dependencies> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> </dependency> </dependencies> <parent> <groupId>com.claudiushauptmann</groupId> <artifactId>gwt-recaptcha-parent</artifactId> <version>1.0.0.Beta2</version> </parent> <!-- Build Settings --> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.java</include> <include>**/*.gwt.xml</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*GwtTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <executions> <execution> <id>test</id> <goals> <goal>test</goal> </goals> <phase>test</phase> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ftp</artifactId> </extension> </extensions> </build> <!-- More Project Information --> <name>gwt-recaptcha</name> <description>RecaptchaWidget for GWT.</description> <url>http://claudiushauptmann.com/gwt-recaptcha/</url> <distributionManagement> <site> <id>claudiushauptmann.com</id> <url>ftp://claudiushauptmann.com/gwt-recaptcha/</url> </site> </distributionManagement> </project>