gwt-hashcode-equals
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.flipthebird.gwt-hashcode-equals</groupId> <artifactId>gwt-hashcode-equals</artifactId> <version>0.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2010 Daniel Bell Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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.flipthebird.gwt-hashcode-equals</groupId> <artifactId>gwt-hashcode-equals</artifactId> <version>0.1.0</version> <packaging>jar</packaging> <name>GWT HashCode/Equals</name> <inceptionYear>2010</inceptionYear> <description>A port of Apache Commons Lang's HashCodeBuilder and EqualsBuilder to GWT.</description> <url>http://gwt-hashcode-equals.googlecode.com</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <prerequisites> <maven>2.0.9</maven> </prerequisites> <developers> <developer> <id>daniel.r.bell@gmail.com</id> <name>Daniel Bell</name> <timezone>+10</timezone> <email>daniel.r.bell@gmail.com</email> </developer> </developers> <scm> <url>http://code.google.com/p/gwt-hashcode-equals/source/browse</url> <connection>scm:hg:https://gwt-hashcode-equals.googlecode.com/hg</connection> <developerConnection>scm:hg:https://gwt-hashcode-equals.googlecode.com/hg</developerConnection> </scm> <distributionManagement> <!-- No Snapshot Repository at the Moment --> <!--<snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository>--> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <downloadUrl>http://code.google.com/p/gwt-hashcode-equals/downloads/list</downloadUrl> </distributionManagement> <dependencies> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> <version>2.0.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-dev</artifactId> <version>2.0.3</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>${project.basedir}/src/main/java</directory> <includes> <include>**/*.xml</include> </includes> </testResource> </testResources> <resources> <resource> <directory>${project.basedir}/src/main/java</directory> <includes> <include>**/*.java</include> <include>**/*.xml</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-maven-plugin</artifactId> <configuration> <serverAuthId>sonatype-nexus-staging</serverAuthId> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>