组织ID: |
com.optimaize.languagedetector |
项目ID: |
language-detector |
版本: |
0.5 |
最后修改时间: |
2018-07-30 16:40:40 |
包类型: |
jar |
标题: |
language-detector |
描述: |
Language Detection Library for Java.
|
相关URL: |
https://github.com/optimaize/language-detector |
大小: |
1.79MB |
|
Maven引入代码: |
<dependency>
<groupId>com.optimaize.languagedetector</groupId>
<artifactId>language-detector</artifactId>
<version>0.5</version>
</dependency>
|
Gradle引入代码: |
com.optimaize.languagedetector:language-detector:0.5
|
下载Jar包: |
|
POM文件内容: |
<?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.5</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.5</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>16.0.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.6</version>
</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>
|
Jar包内容: |
META-INF/MANIFEST.MF
README.md
com.optimaize.langdetect.ngram.BackwardsCompatibleNgramFilter.class
com.optimaize.langdetect.ngram.OldNgramExtractor.class
com.optimaize.langdetect.ngram.NgramExtractor.class
com.optimaize.langdetect.ngram.NgramFilter.class
com.optimaize.langdetect.ngram.StandardNgramFilter.class
com.optimaize.langdetect.ngram.NgramExtractors.class
com.optimaize.langdetect.ngram.OldNgramExtractor$Filter.class
com.optimaize.langdetect.LanguageDetector.class
com.optimaize.langdetect.NgramFrequencyData.class
com.optimaize.langdetect.text.UrlTextFilter.class
com.optimaize.langdetect.text.RemoveMinorityScriptsTextFilter.class
com.optimaize.langdetect.text.RemoveMinorityScriptsTextFilter$1.class
com.optimaize.langdetect.text.CommonTextObjectFactories.class
com.optimaize.langdetect.text.TextObjectFactoryBuilder.class
com.optimaize.langdetect.text.TextFilter.class
com.optimaize.langdetect.text.TextObjectFactory.class
com.optimaize.langdetect.text.MultiTextFilter.class
com.optimaize.langdetect.text.CharNormalizerTextFilterImpl.class
com.optimaize.langdetect.text.TextObject.class
com.optimaize.langdetect.LanguageDetectorImpl.class
com.optimaize.langdetect.profiles.LanguageProfileWriter.class
com.optimaize.langdetect.profiles.LanguageProfile.class
com.optimaize.langdetect.profiles.LanguageProfileBuilder.class
com.optimaize.langdetect.profiles.BuiltInLanguages.class
com.optimaize.langdetect.profiles.LanguageProfileImpl.class
com.optimaize.langdetect.profiles.OldLangProfileConverter.class
com.optimaize.langdetect.profiles.LanguageProfileReader$1.class
com.optimaize.langdetect.profiles.util.LanguageLister.class
com.optimaize.langdetect.profiles.LanguageProfileReader.class
com.optimaize.langdetect.i18n.LdLocale.class
com.optimaize.langdetect.LanguageDetectorBuilder.class
com.optimaize.langdetect.DetectedLanguage.class
com.cybozu.labs.langdetect.CommandLineInterface.class
com.cybozu.labs.langdetect.GenProfile.class
com.cybozu.labs.langdetect.util.Messages.class
com.cybozu.labs.langdetect.util.LangProfile.class
com/cybozu/labs/langdetect/util/messages.properties
com.cybozu.labs.langdetect.util.Util.class
com.cybozu.labs.langdetect.util.NGram.class
com.cybozu.labs.langdetect.util.TagExtractor.class
com.cybozu.labs.langdetect.util.CharNormalizer.class
LICENSE
be.frma.langguess.LangProfileReader.class
be.frma.langguess.GenProfile.class
be.frma.langguess.IOUtils.class
be.frma.langguess.LangProfileWriter.class
languages/gl
languages/cy
languages/ast
languages/id
languages/nl
languages/ro
languages/fa
languages/en
languages/pt
languages/ar
languages/hu
languages/te
languages/ko
languages/ga
languages/ta
languages/ru
languages/sl
languages/bg
languages/so
languages/eu
languages/mt
languages/tl
languages/th
languages/zh-TW
languages/sr
languages/bn
languages/et
languages/an
languages/ja
languages/it
languages/ht
languages/fr
languages/is
languages/pl
languages/hi
languages/no
languages/mk
languages/da
languages/hr
languages/ml
languages/pa
languages/gu
languages/de
languages/kn
languages/vi
languages/br
languages/af
languages/mr
languages/yi
languages/ms
languages/km
languages/sq
languages/ca
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
jsonic-1.2.11.jar
/net.arnx/jsonic/1.2.11
查看jsonic所有版本文件
annotations-12.0.jar
/com.intellij/annotations/12.0
查看annotations所有版本文件
guava-16.0.1.jar
/com.google.guava/guava/16.0.1
查看guava所有版本文件
slf4j-api-1.7.6.jar
/org.slf4j/slf4j-api/1.7.6
查看slf4j-api所有版本文件
junit-dep-4.11.jar
/junit/junit-dep/4.11
查看junit-dep所有版本文件
hamcrest-core-1.3.jar
/org.hamcrest/hamcrest-core/1.3
查看hamcrest-core所有版本文件
hamcrest-library-1.3.jar
/org.hamcrest/hamcrest-library/1.3
查看hamcrest-library所有版本文件
mockito-all-1.9.5.jar
/org.mockito/mockito-all/1.9.5
查看mockito-all所有版本文件
logback-classic-1.1.1.jar
/ch.qos.logback/logback-classic/1.1.1
查看logback-classic所有版本文件
|