Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache OpenNLP
Copyright 2010, 2015 The Apache Software Foundation
Copyright 2017 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Expand Down
8 changes: 8 additions & 0 deletions opennlp-distr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-uima</artifactId>
</dependency>
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-brat-annotator</artifactId>
</dependency>
<dependency>
<groupId>org.apache.opennlp</groupId>
<artifactId>opennlp-morfologik-addon</artifactId>
</dependency>
</dependencies>

<build>
Expand Down
19 changes: 18 additions & 1 deletion opennlp-distr/src/main/assembly/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
<includes>
<include>org.apache.opennlp:opennlp-tools</include>
<include>org.apache.opennlp:opennlp-uima</include>
<include>org.apache.opennlp:opennlp-brat-annotator</include>
<include>org.apache.opennlp:opennlp-morfologik-addon</include>
</includes>
<unpack>false</unpack>
<useProjectArtifact>false</useProjectArtifact>
Expand All @@ -47,6 +49,7 @@
<fileSet>
<directory>src/main/readme</directory>
<fileMode>644</fileMode>
<outputDirectory>.</outputDirectory>
<directoryMode>755</directoryMode>
</fileSet>

Expand Down Expand Up @@ -90,7 +93,21 @@
<directoryMode>755</directoryMode>
<outputDirectory>docs/apidocs/opennlp-tools</outputDirectory>
</fileSet>


<fileSet>
<directory>../opennlp-brat-annotator/target/apidocs</directory>
<fileMode>644</fileMode>
<directoryMode>755</directoryMode>
<outputDirectory>docs/apidocs/opennlp-brat-annotator</outputDirectory>
</fileSet>

<fileSet>
<directory>../opennlp-morfologik-addon/target/apidocs</directory>
<fileMode>644</fileMode>
<directoryMode>755</directoryMode>
<outputDirectory>docs/apidocs/opennlp-morfologik-addon</outputDirectory>
</fileSet>

<fileSet>
<directory>../opennlp-uima/target/apidocs</directory>
<fileMode>644</fileMode>
Expand Down
2 changes: 1 addition & 1 deletion opennlp-distr/src/main/readme/NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache OpenNLP
Copyright 2010, 2013 The Apache Software Foundation
Copyright 2017 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Expand Down
56 changes: 0 additions & 56 deletions opennlp-morfologik-addon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,62 +14,6 @@
<name>Apache OpenNLP Morfologik Addon</name>

<url>http://maven.apache.org</url>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>bundle-project-sources</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/bin.xml</descriptor>
<descriptor>src/main/assembly/src.xml</descriptor>
</descriptors>
<!-- Tar package is only compatible with gnu tar,
many file have more than 100 chars.
Right now only javadoc files are too long.
-->
<tarLongFileMode>gnu</tarLongFileMode>

<finalName>apache-opennlp-morfologik-addon-${project.version}</finalName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>generate checksums for binary artifacts</id>
<goals><goal>run</goal></goals>
<phase>verify</phase>
<configuration>
<target>
<checksum algorithm="sha1" format="MD5SUM">
<fileset dir="${project.build.directory}">
<include name="*.zip" />
<include name="*.gz" />
</fileset>
</checksum>
<checksum algorithm="md5" format="MD5SUM">
<fileset dir="${project.build.directory}">
<include name="*.zip" />
<include name="*.gz" />
</fileset>
</checksum>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,17 @@
<version>${project.version}</version>
</dependency>

<dependency>
<artifactId>opennlp-brat-annotator</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>

<dependency>
<artifactId>opennlp-morfologik-addon</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -254,9 +265,6 @@
<executions>
<execution>
<id>default-cli</id>
<configuration>
<numUnapprovedLicenses>0</numUnapprovedLicenses>
</configuration>
</execution>
</executions>
</plugin>
Expand Down