-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
136 lines (135 loc) · 4.86 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!--
~ This code is copyright CloudMinds 2017.
~
~ Author: Yan Virin [email protected]
~
~ This software is released under the GNU Public License <http://www.gnu.org/copyleft/gpl.html>.
~ Please cite the following article in any publication with references:
~ Pease A., and Benzmüller C. (2013). Sigma: An Integrated Development Environment for Logical Theories. AI Communications 26, pp79-97.
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.cobra</groupId>
<artifactId>cobra</artifactId>
<version>0.98.4</version>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.22</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.7.0</version>
</dependency>
<dependency>
<groupId>edu.stanford.nlp</groupId>
<artifactId>stanford-corenlp</artifactId>
<version>3.7.0</version>
<classifier>models</classifier>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>6.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queries</artifactId>
<version>6.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>6.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-common</artifactId>
<version>6.4.0</version>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-snowball</artifactId>
<version>3.0.3</version>
</dependency>
<dependency>
<groupId>edu.emory.clir</groupId>
<artifactId>clearnlp</artifactId>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>edu.emory.clir</groupId>
<artifactId>clearnlp-dictionary</artifactId>
<version>3.2</version>
</dependency>
<dependency>
<groupId>edu.emory.clir</groupId>
<artifactId>clearnlp-general-en-ner</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>edu.emory.clir</groupId>
<artifactId>clearnlp-general-en-ner-gazetteer</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>edu.emory.clir</groupId>
<artifactId>clearnlp-general-en-dep</artifactId>
<version>3.2</version>
</dependency>
<dependency>
<groupId>edu.emory.clir</groupId>
<artifactId>clearnlp-general-en-pos</artifactId>
<version>3.2</version>
</dependency>
<dependency>
<groupId>edu.emory.clir</groupId>
<artifactId>clearnlp-general-en-srl</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>edu.emory.clir</groupId>
<artifactId>clearnlp-global-lexica</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
</dependencies>
</project>