Download clearnlp-dictionary-1.0.jar file

Introduction

You can download clearnlp-dictionary-1.0.jar in this page.

License

The BSD 2-Clause License

Type List

clearnlp-dictionary-1.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.clearnlp/clearnlp-dictionary/pom.properties
META-INF/maven/com.clearnlp/clearnlp-dictionary/pom.xml
dictionary/english/abbreviation.rule
dictionary/english/adjective.accept
dictionary/english/adjective.base
dictionary/english/adjective.exc
dictionary/english/adverb.accept
dictionary/english/adverb.base
dictionary/english/adverb.exc
dictionary/english/cardinal.base
dictionary/english/derivation_suffix.xml
dictionary/english/inflection_suffix.xml
dictionary/english/noun.accept
dictionary/english/noun.base
dictionary/english/noun.exc
dictionary/english/ordinal.base
dictionary/english/verb.accept
dictionary/english/verb.base
dictionary/english/verb.exc
dictionary/english/verb.tense
dictionary/tokenizer/abbreviations.txt
dictionary/tokenizer/compounds.txt
dictionary/tokenizer/emoticons.txt
dictionary/tokenizer/hyphens.txt
dictionary/tokenizer/non-utf8.txt
dictionary/tokenizer/units.txt

Pom

clearnlp-dictionary-1.0.pom file content.

<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.clearnlp</groupId>
  <artifactId>clearnlp-dictionary</artifactId>
  <version>1.0</version>
  <packaging>jar</packaging>
  <name>clearnlp-dictionary</name>
  <description>Dictionary used for tokenization and morphological analysis.</description>
  <url>https://clearnlp.com</url>

  <licenses>
    <license>
      <name>The BSD 2-Clause License</name>
      <url>http://www.opensource.org/licenses/bsd-license.php</url>
    </license>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>

  <scm>
    <url>https://github.com/clearnlp/clearnlp-dictionary</url>
    <connection>scm:git:git://github.com/clearnlp/clearnlp-dictionary.git</connection>
    <developerConnection>scm:git:git@github.com:clearnlp/clearnlp-dictionary.git</developerConnection>
  </scm>
  
  <developers>
    <developer>
      <id>jdchoi77</id>
      <name>Jinho D. Choi</name>
      <email>{id}@gmail.com</email>
    </developer>
  </developers>
  
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <properties>
    <maven.compiler.source>1.6</maven.compiler.source>
    <maven.compiler.target>1.6</maven.compiler.target>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  
  <build>
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <includes>
          <include>**/*</include>
        </includes>
      </resource>
    </resources>
    
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.0</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>com.clearnlp</groupId>
   <artifactId>clearnlp-dictionary</artifactId>
   <version>1.0</version>
</dependency>

Download

If you think the following clearnlp-dictionary-1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download clearnlp-dictionary-1.0.jar file




PreviousNext

Related