You can download language-detector-0.6.jar in this page.
Apache 2
language-detector-0.6.jar file has the following types.
LICENSE META-INF/MANIFEST.MF META-INF/maven/com.optimaize.languagedetector/language-detector/pom.properties META-INF/maven/com.optimaize.languagedetector/language-detector/pom.xml README.md com.optimaize.langdetect.DetectedLanguage.class com.optimaize.langdetect.LanguageDetector.class com.optimaize.langdetect.LanguageDetectorBuilder.class com.optimaize.langdetect.LanguageDetectorImpl.class com.optimaize.langdetect.NgramFrequencyData.class com.optimaize.langdetect.cybozu.CommandLineInterface.class com.optimaize.langdetect.cybozu.GenProfile.class com.optimaize.langdetect.cybozu.util.CharNormalizer.class com.optimaize.langdetect.cybozu.util.LangProfile.class com.optimaize.langdetect.cybozu.util.Messages.class com.optimaize.langdetect.cybozu.util.NGram.class com.optimaize.langdetect.cybozu.util.TagExtractor.class com.optimaize.langdetect.cybozu.util.Util.class com.optimaize.langdetect.frma.GenProfile.class com.optimaize.langdetect.frma.IOUtils.class com.optimaize.langdetect.frma.LangProfileReader.class com.optimaize.langdetect.frma.LangProfileWriter.class com.optimaize.langdetect.i18n.LdLocale.class com.optimaize.langdetect.ngram.BackwardsCompatibleNgramFilter.class com.optimaize.langdetect.ngram.NgramExtractor.class com.optimaize.langdetect.ngram.NgramExtractors.class com.optimaize.langdetect.ngram.NgramFilter.class com.optimaize.langdetect.ngram.OldNgramExtractor.class com.optimaize.langdetect.ngram.StandardNgramFilter.class com.optimaize.langdetect.profiles.BuiltInLanguages.class com.optimaize.langdetect.profiles.LanguageProfile.class com.optimaize.langdetect.profiles.LanguageProfileBuilder.class com.optimaize.langdetect.profiles.LanguageProfileImpl.class com.optimaize.langdetect.profiles.LanguageProfileReader.class com.optimaize.langdetect.profiles.LanguageProfileWriter.class com.optimaize.langdetect.profiles.OldLangProfileConverter.class com.optimaize.langdetect.profiles.util.LanguageLister.class com.optimaize.langdetect.text.CharNormalizerTextFilterImpl.class com.optimaize.langdetect.text.CommonTextObjectFactories.class com.optimaize.langdetect.text.MultiTextFilter.class com.optimaize.langdetect.text.RemoveMinorityScriptsTextFilter.class com.optimaize.langdetect.text.TextFilter.class com.optimaize.langdetect.text.TextObject.class com.optimaize.langdetect.text.TextObjectFactory.class com.optimaize.langdetect.text.TextObjectFactoryBuilder.class com.optimaize.langdetect.text.UrlTextFilter.class com/optimaize/langdetect/cybozu/util/messages.properties languages.shorttext/cs languages.shorttext/da languages.shorttext/de languages.shorttext/en languages.shorttext/es languages.shorttext/fi languages.shorttext/fr languages.shorttext/id languages.shorttext/it languages.shorttext/nl languages.shorttext/no languages.shorttext/pl languages.shorttext/pt languages.shorttext/ro languages.shorttext/sv languages.shorttext/tr languages.shorttext/vi languages/af languages/an languages/ar languages/ast languages/be languages/bg languages/bn languages/br languages/ca languages/cs languages/cy languages/da languages/de languages/el languages/en languages/es languages/et languages/eu languages/fa languages/fi languages/fr languages/ga languages/gl languages/gu languages/he languages/hi languages/hr languages/ht languages/hu languages/id languages/is languages/it languages/ja languages/km languages/kn languages/ko languages/lt languages/lv languages/mk languages/ml languages/mr languages/ms languages/mt languages/ne languages/nl languages/no languages/oc languages/pa languages/pl languages/pt languages/ro languages/ru languages/sk languages/sl languages/so languages/sq languages/sr languages/sv languages/sw languages/ta languages/te languages/th languages/tl languages/tr languages/uk languages/ur languages/vi languages/yi languages/zh-CN languages/zh-TW
language-detector-0.6.pom file content.
<?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.optimaize.languagedetector</groupId> <artifactId>language-detector</artifactId> <name>language-detector</name> <version>0.6</version> <packaging>jar</packaging> <url>https://github.com/optimaize/language-detector</url> <description> Language Detection Library for Java. </description> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <compiler.source>1.7</compiler.source> <compiler.target>1.7</compiler.target> </properties> <developers> <developer> <name>Nakatani Shuyo</name> </developer> <developer> <name>Fabian Kessler</name> </developer> <developer> <name>Fran?ois ROLAND</name> </developer> <developer> <name>Robert Theis</name> </developer> </developers> <scm> <connection>scm:git:https://github.com/optimaize/language-detector</connection> <developerConnection>scm:git:https://github.com/optimaize/language-detector</developerConnection> <url>https://github.com/optimaize/language-detector</url> <tag>language-detector-0.6</tag> </scm> <build> <!-- Include the README and LICENSE files: --> <resources> <resource><!-- this is default, but because we tamper with the resources, we need to explicitly mention it. --> <directory>src/main/resources</directory> </resource> <resource> <directory>${project.basedir}</directory> <includes> <include>README*</include> <include>LICENSE*</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${compiler.source}</source> <target>${compiler.target}</target> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Required: javadoc JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadoc</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4.1</version> <configuration> <!-- Automated passphrase entry: --> <!-- To pass your passphrase to the build automatically, so avoiding manual interaction, you'll need to put the passphrase into settings.xml. You don't really want that to be in plain text, so you'll want to follow: http://maven.apache.org/guides/mini/guide-encryption.html --> <!-- <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> --> <!-- Manual passphrase entry: --> <!-- This is the simplest secure solution, but requires you to type your key passphrase in manually when performing a release. No biggie unless you want your CI server to decide when to release for you. --> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> </plugin> </plugins> </pluginManagement> </build> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Nexus release repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <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.4</version> <!--<configuration>--> <!--<passphrase>${gpg.passphrase}</passphrase>--> <!--</configuration>--> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>net.arnx</groupId> <artifactId>jsonic</artifactId> <version>1.2.11</version> </dependency> <dependency> <groupId>com.intellij</groupId> <artifactId>annotations</artifactId> <version>12.0</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>18.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.6</version> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.9.9</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.1</version> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>com.optimaize.languagedetector</groupId> <artifactId>language-detector</artifactId> <version>0.6</version> </dependency>
If you think the following language-detector-0.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download language-detector-0.6.jar file