Download jwordsplitter-4.1.jar file

Introduction

You can download jwordsplitter-4.1.jar in this page.

License

The Apache Software License, Version 2.0

Type List

jwordsplitter-4.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/de.danielnaber/jwordsplitter/pom.properties
META-INF/maven/de.danielnaber/jwordsplitter/pom.xml
de.danielnaber.jwordsplitter.AbstractWordSplitter.class
de.danielnaber.jwordsplitter.EmbeddedGermanDictionary.class
de.danielnaber.jwordsplitter.Example.class
de.danielnaber.jwordsplitter.ExceptionSplits.class
de.danielnaber.jwordsplitter.GermanInterfixDisambiguator.class
de.danielnaber.jwordsplitter.GermanWordSplitter.class
de.danielnaber.jwordsplitter.converter.ExportDict.class
de.danielnaber.jwordsplitter.converter.SerializeDict.class
de.danielnaber.jwordsplitter.tools.FastObjectSaver.class
de.danielnaber.jwordsplitter.tools.FileTools.class
de.danielnaber.jwordsplitter.tools.TestjWordSplitterGerman.class
de/danielnaber/jwordsplitter/exceptionsGerman.txt
de/danielnaber/jwordsplitter/wordsGerman.ser

Pom

jwordsplitter-4.1.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">

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>

  <groupId>de.danielnaber</groupId>
  <artifactId>jwordsplitter</artifactId>
  <version>4.1</version>
  <packaging>jar</packaging>

  <name>jwordsplitter</name>
  <description>A Java library to split German compound words</description>
  <url>http://www.danielnaber.de/jwordsplitter/</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git://github.com/danielnaber/jwordsplitter.git</connection>
    <developerConnection>scm:git:git@github.com:danielnaber/jwordsplitter.git</developerConnection>
    <url>https://github.com/danielnaber/jwordsplitter</url>
  </scm>
  <developers>
    <developer>
      <name>Sven Abels</name>
    </developer>
    <developer>
      <name>Daniel Naber</name>
    </developer>
  </developers>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>com.intellij</groupId>
      <artifactId>annotations</artifactId>
      <version>12.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>

    <plugins>

      <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>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.4</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.10.2</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <excludes>
            <!-- the data is in the binary dict, including the text would only make the JAR bigger: -->
            <exclude>**/de/danielnaber/jwordsplitter/additions.txt</exclude>
            <exclude>**/de/danielnaber/jwordsplitter/removals.txt</exclude>
            <exclude>**/de/danielnaber/jwordsplitter/removals.README</exclude>
            <exclude>**/de/danielnaber/jwordsplitter/germanPrefixes.txt</exclude>
            <exclude>**/de/danielnaber/jwordsplitter/languagetool-dict.txt</exclude>
          </excludes>
          <archive>
            <manifest>
              <mainClass>de.danielnaber.jwordsplitter.tools.TestjWordSplitterGerman</mainClass>
            </manifest>
          </archive>
        </configuration>
      </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>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.3</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>

    </plugins>
      
  </build>

  <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>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
    
</project>

POM Entry

<dependency>
   <groupId>de.danielnaber</groupId>
   <artifactId>jwordsplitter</artifactId>
   <version>4.1</version>
</dependency>

Download

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



Download jwordsplitter-4.1.jar file




PreviousNext

Related