string-score
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.madgag</groupId>
<artifactId>string-score</artifactId>
<version>0.0.1-UNOFFICIAL-ROBERTO-RELEASE</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>
<groupId>com.madgag</groupId>
<artifactId>string-score</artifactId>
<version>0.0.1-UNOFFICIAL-ROBERTO-RELEASE</version>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<packaging>jar</packaging>
<name>string-score</name>
<description>string-score is a port of Joshaven Potter's string_score to Java by Shingo Omura.</description>
<url>https://github.com/everpeace/string-score</url>
<licenses>
<license>
<name>MIT</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/rtyley/string-score</url>
<connection>scm:git:git://github.com/rtyley/string-score.git</connection>
<developerConnection>scm:git:git@github.com:rtyley/string-score.git</developerConnection>
</scm>
<developers>
<developer>
<name>Shingo Omura</name>
<url>http://everpeace.github.com</url>
<id>everpeace</id>
</developer>
</developers>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<argLine>-Xmx1024m</argLine>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>