-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpom.xml
109 lines (100 loc) · 3.97 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
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.oneandone.maven.poms</groupId>
<artifactId>foss-parent</artifactId>
<version>1.4.8</version>
</parent>
<groupId>org.dts.spell</groupId>
<artifactId>jmyspell</artifactId>
<version>1.0-unitedinternet-2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>jmyspell parent</name>
<description>JMySpell is a 100% pure-Java implementation of the MySpell spell checker, licensed under the LGPL. This allows us to use the old dictionaries from OpenOffice.org in Java applications, whether they're J2SE applications or J2EE web applications. Since at the moment there is only one 100% Java Open-Source spell checker (Jazzy), and the inclusion of dictionaries is difficult, the objective of this project is to fill this gap.</description>
<url>http://kenai.com/projects/jmyspell</url>
<licenses>
<license>
<name>LGPL-2.1</name>
<url>http://opensource.org/licenses/lgpl-2.1.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>dreamtangerine</id>
<name>dreamtangerine</name>
<roles>
<role>administrator</role>
</roles>
</developer>
<developer>
<id>hacklaen</id>
<name>hacklaen</name>
<roles>
<role>observer</role>
</roles>
</developer>
<developer>
<id>dressen</id>
<name>dressen</name>
<roles>
<role>observer</role>
</roles>
</developer>
<developer>
<id>mfriedenhagen</id>
<name>Mirko Friedenhagen</name>
<url>https://github.com/mfriedenhagen/</url>
<timezone>CET</timezone>
<roles>
<role>mavenizer</role>
</roles>
</developer>
</developers>
<modules>
<module>jmyspell-core</module>
<module>jmyspell-myspell-dictionary</module>
<module>jmyspell-swing</module>
<module>jmyspell-examples</module>
</modules>
<scm>
<developerConnection>scm:git:ssh://[email protected]/1and1/jmyspell.git</developerConnection>
<connection>scm:git:git://github.com/1and1/jmyspell.git</connection>
<url>https://github.com/1and1/jmyspell</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/1and1/jmyspell/issues</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://huschteguzzel.de/hudson/job/jmyspell/</url>
</ciManagement>
<properties>
<enforcer.skip>true</enforcer.skip>
<pmd.failOnViolation>false</pmd.failOnViolation>
<findbugs.failOnError>false</findbugs.failOnError>
<jacoco.haltOnFailure>false</jacoco.haltOnFailure>
<checkstyle.failOnViolation>false</checkstyle.failOnViolation>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.dts.spell</groupId>
<artifactId>jmyspell-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.dts.spell</groupId>
<artifactId>jmyspell-myspell-dictionary</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.dts.spell</groupId>
<artifactId>jmyspell-swing</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>