| 组织ID: |
de.abelssoft |
| 项目ID: |
jwordsplitter |
| 版本: |
3.4 |
| 最后修改时间: |
2018-09-12 04:37:36 |
| 包类型: |
jar |
| 标题: |
jwordsplitter |
| 描述: |
A Java library to split German compound words |
| 相关URL: |
http://www.danielnaber.de/jwordsplitter/ |
| 大小: |
316.19KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>de.abelssoft</groupId>
<artifactId>jwordsplitter</artifactId>
<version>3.4</version>
</dependency>
|
| Gradle引入代码: |
de.abelssoft:jwordsplitter:3.4
|
| 下载Jar包: |
|
| POM文件内容: |
<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.abelssoft</groupId>
<artifactId>jwordsplitter</artifactId>
<version>3.4</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>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<connection>scm:svn:https://jwordsplitter.svn.sourceforge.net/svnroot/jwordsplitter/tags/jwordsplitter-3.4</connection>
<developerConnection>scm:svn:https://jwordsplitter.svn.sourceforge.net/svnroot/jwordsplitter/tags/jwordsplitter-3.4</developerConnection>
<url>http://jwordsplitter.svn.sourceforge.net/viewvc/jwordsplitter/tags/jwordsplitter-3.4</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>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>wordsEnglish.ser</exclude>
</excludes>
</resource>
</resources>
<plugins>
<!-- -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>https://jwordsplitter.svn.sourceforge.net/svnroot/jwordsplitter/tags/</tagBase>
</configuration>
</plugin>
<!-- -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<configuration>
<descriptor>src/main/assembly/src.xml</descriptor>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2</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.9</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>
<archive>
<manifest>
<mainClass>TestjWordSplitterGerman</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</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>2.5.1</version>
<configuration>
<source>1.5</source>
<target>1.5</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>
|
| Jar包内容: |
META-INF/MANIFEST.MF
TestjWordSplitterGerman.class
wordsGerman.ser
exceptionsGerman.txt
germanPrefixes.txt
de.abelssoft.tools.FileTools.class
de.abelssoft.tools.AmbiguityFinder.class
de.abelssoft.tools.persistence.FastObjectSaver.class
de.abelssoft.wordtools.jwordsplitter.AbstractWordSplitter.class
de.abelssoft.wordtools.jwordsplitter.impl.GermanWordSplitter.class
de.abelssoft.wordtools.jwordsplitter.converter.SerializeDict.class
de.abelssoft.wordtools.jwordsplitter.converter.ExportDict.class
de.abelssoft.Example.class
META-INF/maven/de.abelssoft/jwordsplitter/pom.xml
META-INF/maven/de.abelssoft/jwordsplitter/pom.properties
|
| 依赖Jar: |
junit-3.8.1.jar
/junit/junit/3.8.1
查看junit所有版本文件
|