-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
71 lines (71 loc) · 2.59 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
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>edu.umass.nlp</groupId>
<artifactId>umass-nlp</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>commons-primitives</groupId>
<artifactId>commons-primitives</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>net.htmlparser.jericho</groupId>
<artifactId>jericho-html</artifactId>
<version>3.1</version>
<scope>compile</scope>
</dependency>
<!--<dependency>-->
<!--<groupId>org.clojars.thnetos</groupId>-->
<!--<artifactId>opennlp-tools</artifactId>-->
<!--<version>1.4.3</version>-->
<!--<scope>compile</scope>-->
<!--</dependency>-->
</dependencies>
<repositories>
<!--<repository>-->
<!--<id>clojars</id>-->
<!--<url>http://clojars.org/repo</url>-->
<!--</repository>-->
</repositories>
<build>
<resources>
<resource>
<directory>src/main/clojure</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!--<plugin>-->
<!--<groupId>com.theoryinpractise</groupId>-->
<!--<artifactId>clojure-maven-plugin</artifactId>-->
<!--<version>1.3.2</version>-->
<!--<configuration>-->
<!--<clojureOptions>-server -mx1200m</clojureOptions>-->
<!--<warnOnReflection>true</warnOnReflection>-->
<!--<script></script>-->
<!--</configuration>-->
<!--</plugin>-->
</plugins>
</build>
</project>