-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
114 lines (113 loc) · 3.06 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<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/maven-v4_0_0.xsd"
>
<!-- POM for global project Textual Derivation Detection Toolsets -->
<modelVersion>4.0.0</modelVersion>
<groupId>info.fabienpoulard.tddts</groupId>
<artifactId>uima-word-tokenizer</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>French Unicode Tokenizer</name>
<description>Create the annotations to split the text in words based. Takes advantage of Unicode classes.
Specially designed for French.</description>
<licenses>
<license>
<name>Apache 2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>poulard-f</id>
<name>Fabien Poulard</name>
<email>[email protected]</email>
<url>http://www.fabienpoulard.info</url>
</developer>
</developers>
<dependencies>
<!-- UIMA Core -->
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
<version>2.3.0-incubating</version>
<scope>compile</scope>
</dependency>
<!-- UIMA tools -->
<!--
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-tools</artifactId>
<version>2.3.0-incubating</version>
</dependency>
-->
</dependencies>
<build>
<plugins>
<!-- Java Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<!-- Generate annotation types -->
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.apache.uima.tools.jcasgen.Jg</mainClass>
<arguments>
<argument>-jcasgeninput</argument>
<argument>desc/tddts/preprocessing/ae/FrenchUnicodeTokenizer-AE.xml</argument>
<argument>-jcasgenoutput</argument>
<argument>src/java/main/</argument>
</arguments>
</configuration>
</plugin>
-->
</plugins>
<sourceDirectory>src/java/main</sourceDirectory>
<outputDirectory>bin</outputDirectory>
<resources>
<!-- Descriptors -->
<resource>
<directory>desc</directory>
</resource>
<!-- Sources -->
<resource>
<directory>src/main/java</directory>
</resource>
<!-- Release files -->
<resource>
<directory>.</directory>
<includes>
<include>LICENSE.tokenizer</include>
<include>README.tokenizer</include>
</includes>
</resource>
</resources>
</build>
<repositories>
<!-- Apache UIMA repository -->
<repository>
<id>apache</id>
<name>Apache</name>
<url>http://people.apache.org/repo/m2-incubating-repository</url>
</repository>
</repositories>
</project>