File tree Expand file tree Collapse file tree 5 files changed +64
-45
lines changed Expand file tree Collapse file tree 5 files changed +64
-45
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ libraryDependencies += "org.apache.opennlp" % "opennlp-tools" % "${opennlp.versi
92
92
93
93
#### Gradle
94
94
```
95
- compile group: "org.apache.opennlp", name: "opennlp-tools", version: "$opennlp.version"
95
+ compile group: "org.apache.opennlp", name: "opennlp-tools", version: "${ opennlp.version} "
96
96
```
97
97
98
98
@@ -112,4 +112,4 @@ mvn install
112
112
113
113
The Apache OpenNLP project is developed by volunteers and is always looking for new contributors to work on all parts of the project. Every contribution is welcome and needed to make it better. A contribution can be anything from a small documentation typo fix to a new component.
114
114
115
- If you would like to get involved please follow the instructions [ here] ( https://github.com/apache/opennlp/blob/master/.github/CONTRIBUTING.md )
115
+ If you would like to get involved please follow the instructions [ here] ( https://github.com/apache/opennlp/blob/master/.github/CONTRIBUTING.md )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <!--
2
+ Licensed to the Apache Software Foundation (ASF) under one or more
3
+ contributor license agreements. See the NOTICE file distributed with
4
+ this work for additional information regarding copyright ownership.
5
+ The ASF licenses this file to You under the Apache License, Version 2.0
6
+ (the "License"); you may not use this file except in compliance with
7
+ the License. You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ -->
17
+
18
+ <!DOCTYPE html>
19
+ < html lang ="en ">
20
+ < head >
21
+ < title > Apache OpenNLP Readme</ title >
22
+ < style >
23
+ [href = 'https://travis-ci.org/apache/opennlp' ]{ display : none }
24
+ [href = 'https://coveralls.io/github/apache/opennlp?branch=master' ]{ display : none }
25
+ [href = 'https://maven-badges.herokuapp.com/maven-central/org.apache.opennlp/opennlp' ]{ display : none }
26
+ [href = 'http://opennlp.apache.org/docs/index.html' ]{ display : none }
27
+ </ style >
28
+ </ head >
Original file line number Diff line number Diff line change 32
32
<packaging >pom</packaging >
33
33
<name >Apache OpenNLP Distribution</name >
34
34
35
+ <properties >
36
+ <opennlp .version>${pom.version} </opennlp .version>
37
+ </properties >
38
+
35
39
<!-- Versions will automatically be updated by the release plugin -->
36
40
<dependencies >
37
41
<dependency >
54
58
55
59
<build >
56
60
<plugins >
61
+ <plugin >
62
+ <groupId >com.ruleoftech</groupId >
63
+ <artifactId >markdown-page-generator-plugin</artifactId >
64
+ <version >1.0.0</version >
65
+ <executions >
66
+ <execution >
67
+ <phase >process-sources</phase >
68
+ <goals >
69
+ <goal >generate</goal >
70
+ </goals >
71
+ </execution >
72
+ </executions >
73
+ <configuration >
74
+ <inputDirectory >${basedir} /../</inputDirectory >
75
+ <outputDirectory >${basedir} /target</outputDirectory >
76
+ <headerHtmlFile >${basedir} /README_HEADER.html</headerHtmlFile >
77
+ </configuration >
78
+ </plugin >
57
79
<plugin >
58
80
<artifactId >maven-assembly-plugin</artifactId >
59
81
<executions >
Original file line number Diff line number Diff line change 46
46
<directory >src/main/readme</directory >
47
47
<fileMode >644</fileMode >
48
48
<directoryMode >755</directoryMode >
49
- <outputDirectory >.</outputDirectory >
49
+ <outputDirectory >.</outputDirectory >
50
50
</fileSet >
51
51
52
52
<fileSet >
55
55
<fileMode >644</fileMode >
56
56
<directoryMode >755</directoryMode >
57
57
<includes >
58
- <include >README</include >
59
58
<include >RELEASE_NOTES.html</include >
60
59
</includes >
61
60
</fileSet >
62
-
61
+
62
+ <fileSet >
63
+ <directory >target</directory >
64
+ <fileMode >644</fileMode >
65
+ <directoryMode >755</directoryMode >
66
+ <outputDirectory >.</outputDirectory >
67
+ <includes >
68
+ <include >README.html</include >
69
+ </includes >
70
+ </fileSet >
71
+
63
72
<fileSet >
64
73
<directory >target/issuesFixed</directory >
65
74
<fileMode >644</fileMode >
You can’t perform that action at this time.
0 commit comments