langdetect
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.norconex.language</groupId> <artifactId>langdetect</artifactId> <version>1.3.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.norconex.language</groupId> <artifactId>langdetect</artifactId> <version>1.3.0</version> <packaging>jar</packaging> <name>Shuyo Language Detection Library</name> <url>https://github.com/Norconex/language-detection</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <site.baseurl/> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <dependencies> <dependency> <groupId>net.arnx</groupId> <artifactId>jsonic</artifactId> <version>1.3.5</version> <type>jar</type> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${project.build.testSourceDirectory}</directory> <includes> <include>**</include> </includes> </resource> <resource> <filtering>false</filtering> <directory>${project.build.sourceDirectory}</directory> <includes> <include>**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> <resource> <filtering>false</filtering> <directory>src/main/resources</directory> <includes> <include>**</include> </includes> </resource> </resources> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>1.0</version> </extension> <extension> <groupId>org.springframework.build.aws</groupId> <artifactId>org.springframework.build.aws.maven</artifactId> <version>3.0.0.RELEASE</version> </extension> </extensions> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <overview>${basedir}/src/main/javadoc/overview.html</overview> <show>protected</show> <detectLinks>true</detectLinks> <links> <link>http://junit.org/javadoc/4.11/</link> </links> </configuration> <executions> <execution> <id>make-javadoc</id> <phase>prepare-package</phase> <goals> <goal>javadoc</goal> </goals> </execution> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <description>This project is a fork of the "language-detection" project hosted on Google Code by Nakatani Shuyo at Cybozu Labs, Inc. Original project web site: https://code.google.com/p/language-detection/ This port cleans it up a bit and modify it to mavenize it. </description> <scm> <url>https://github.com/Norconex/language-detection</url> <connection>scm:git:git@github.com:Norconex/language-detection.git</connection> <developerConnection>scm:git:git@github.com:Norconex/language-detection.git</developerConnection> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/Norconex/language-detection/issues</url> </issueManagement> <developers> <developer> <id>essiembre</id> <name>Pascal Essiembre</name> <email>pascal.essiembre@norconex.com</email> <organization>Norconex Inc.</organization> <organizationUrl>http://www.norconex.com</organizationUrl> <timezone>-4</timezone> </developer> </developers> <contributors> </contributors> </project>