langdetect
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.youcruit.com.cybozu.labs</groupId> <artifactId>langdetect</artifactId> <version>1.1.2-20151117</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.youcruit.com.cybozu.labs</groupId> <artifactId>langdetect</artifactId> <version>1.1.2-20151117</version> <name>Language Detection</name> <url>https://github.com/YouCruit/language-detection</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> <description>Language detection library implemented in pure Java</description> <scm> <connection>scm:git:git@github.com:YouCruit/language-detection.git</connection> <developerConnection>scm:git:git@github.com:YouCruit/language-detection.git</developerConnection> <url>https://github.com/YouCruit/language-detection</url> <tag>langdetect-1.1.2-20151117</tag> </scm> <developers> <developer> <id>shuyo@github</id> <name>Nakatani Shuyo</name> <email>nakatani.shuyo@gmail.com</email> </developer> <developer> <id>sergey</id> <name>Sergey Zelvenskiy</name> <email>sergey@zignallabs.com</email> </developer> <developer> <id>tobias-@github</id> <name>Tobias Olsson</name> <email>tobias@olsson.be</email> </developer> </developers> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.6</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.arnx</groupId> <artifactId>jsonic</artifactId> <version>1.3.10</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>doclint-java8-disable</id> <activation> <jdk>[1.8,)</jdk> </activation> <build> <plugins> <plugin> <!-- http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html --> <!-- http://stackoverflow.com/questions/15886209/maven-is-not-working-in-java-8-when-javadoc-tags-are-incomplete/22981151 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>