forked from rm-hull/jwi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
66 lines (56 loc) · 1.81 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
<?xml version="1.0" encoding="utf-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>edu.mit</groupId>
<artifactId>jwi</artifactId>
<version>2.4.0</version>
<packaging>jar</packaging>
<name>JWI</name>
<description>The MIT Java Wordnet Interface</description>
<url>http://projects.csail.mit.edu/jwi/</url>
<licenses>
<license>
<name>Creative Commons Attribution 4.0 International Public License</name>
<url>http://creativecommons.org/licenses/by/4.0/legalcode</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/yieldbot/jwi.git</connection>
<developerConnection>scm:git:git@github.com:yieldbot/jwi.git</developerConnection>
<url>https://github.com/yieldbot/jwi.git</url>
</scm>
<developers>
<developer>
<id>mark.finlayson</id>
<name>Mark Finlayson</name>
<email>markaf@alum.mit.edu</email>
</developer>
</developers>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<encoding>UTF-8</encoding>
</properties>
<build>
<sourceDirectory>${basedir}</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>releases</id>
<name>Artifactory-releases</name>
<url>https://artifactory.yb0t.cc/artifactory/yieldbot-maven-releases</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Artifactory-snapshots</name>
<url>https://artifactory.yb0t.cc/artifactory/yieldbot-maven-snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>