1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!--
3
+ /**
4
+ * Copyright (c) Codice Foundation
5
+ *
6
+ * This is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either
7
+ * version 3 of the License, or any later version.
8
+ *
9
+ * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
+ * See the GNU Lesser General Public License for more details. A copy of the GNU Lesser General Public License is distributed along with this program and can be found at
11
+ * <http://www.gnu.org/licenses/lgpl.html>.
12
+ *
13
+ **/
14
+ -->
15
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
16
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
17
+ <modelVersion >4.0.0</modelVersion >
18
+
19
+ <groupId >org.codice.thirdparty</groupId >
20
+ <artifactId >jts</artifactId >
21
+ <version >1.14.0_1</version >
22
+ <name >Codice :: Thirdparty :: JTS</name >
23
+ <packaging >bundle</packaging >
24
+
25
+ <dependencies >
26
+ <dependency >
27
+ <groupId >com.vividsolutions</groupId >
28
+ <artifactId >jts-core</artifactId >
29
+ <version >1.14.0</version >
30
+ </dependency >
31
+ <dependency >
32
+ <groupId >com.vividsolutions</groupId >
33
+ <artifactId >jts-example</artifactId >
34
+ <version >1.14.0</version >
35
+ </dependency >
36
+ <dependency >
37
+ <groupId >com.vividsolutions</groupId >
38
+ <artifactId >jts-io</artifactId >
39
+ <version >1.14.0</version >
40
+ </dependency >
41
+ </dependencies >
42
+ <build >
43
+ <plugins >
44
+ <plugin >
45
+ <groupId >org.apache.felix</groupId >
46
+ <artifactId >maven-bundle-plugin</artifactId >
47
+ <version >2.3.4</version >
48
+ <extensions >true</extensions >
49
+ <configuration >
50
+ <instructions >
51
+ <Bundle-SymbolicName >${project.groupId} .${project.artifactId} </Bundle-SymbolicName >
52
+ <Bundle-Name >${project.name} </Bundle-Name >
53
+ <Export-Package >
54
+ com.vividsolutions.jts;version="1.14.0",
55
+ com.vividsolutions.jts.algorithm;version="1.14.0",
56
+ com.vividsolutions.jts.algorithm.distance;version="1.14.0",
57
+ com.vividsolutions.jts.algorithm.locate;version="1.14.0",
58
+ com.vividsolutions.jts.geom;version="1.14.0",
59
+ com.vividsolutions.jts.geom.impl;version="1.14.0",
60
+ com.vividsolutions.jts.geom.prep;version="1.14.0",
61
+ com.vividsolutions.jts.geom.util;version="1.14.0",
62
+ com.vividsolutions.jts.geomgraph;version="1.14.0",
63
+ com.vividsolutions.jts.geomgraph.index;version="1.14.0",
64
+ com.vividsolutions.jts.index;version="1.14.0",
65
+ com.vividsolutions.jts.index.bintree;version="1.14.0",
66
+ com.vividsolutions.jts.index.chain;version="1.14.0",
67
+ com.vividsolutions.jts.index.intervalrtree;version="1.14.0",
68
+ com.vividsolutions.jts.index.quadtree;version="1.14.0",
69
+ com.vividsolutions.jts.index.strtree;version="1.14.0",
70
+ com.vividsolutions.jts.index.sweepline;version="1.14.0",
71
+ com.vividsolutions.jts.io;version="1.14.0",
72
+ com.vividsolutions.jts.io.geojson;version="1.14.0",
73
+ com.vividsolutions.jts.io.kml;version="1.14.0",
74
+ com.vividsolutions.jts.io.gml2;version="1.14.0",
75
+ com.vividsolutions.jts.linearref;version="1.14.0",
76
+ com.vividsolutions.jts.math;version="1.14.0",
77
+ com.vividsolutions.jts.noding;version="1.14.0",
78
+ com.vividsolutions.jts.noding.snapround;version="1.14.0",
79
+ com.vividsolutions.jts.operation;version="1.14.0",
80
+ com.vividsolutions.jts.operation.buffer;version="1.14.0",
81
+ com.vividsolutions.jts.operation.buffer.validate;version="1.14.0",
82
+ com.vividsolutions.jts.operation.distance;version="1.14.0",
83
+ com.vividsolutions.jts.operation.linemerge;version="1.14.0",
84
+ com.vividsolutions.jts.operation.overlay;version="1.14.0",
85
+ com.vividsolutions.jts.operation.overlay.snap;version="1.14.0",
86
+ com.vividsolutions.jts.operation.overlay.validate;version="1.14.0",
87
+ com.vividsolutions.jts.operation.polygonize;version="1.14.0",
88
+ com.vividsolutions.jts.operation.predicate;version="1.14.0",
89
+ com.vividsolutions.jts.operation.relate;version="1.14.0",
90
+ com.vividsolutions.jts.operation.union;version="1.14.0",
91
+ com.vividsolutions.jts.operation.valid;version="1.14.0",
92
+ com.vividsolutions.jts.planargraph;version="1.14.0",
93
+ com.vividsolutions.jts.planargraph.algorithm;version="1.14.0",
94
+ com.vividsolutions.jts.precision;version="1.14.0",
95
+ com.vividsolutions.jts.simplify;version="1.14.0",
96
+ com.vividsolutions.jts.util;version="1.14.0"
97
+ </Export-Package >
98
+ </instructions >
99
+ </configuration >
100
+ </plugin >
101
+ </plugins >
102
+ </build >
103
+
104
+ <distributionManagement >
105
+ <snapshotRepository >
106
+ <id >snapshots</id >
107
+ <url >${snapshots.repository.url} </url >
108
+ </snapshotRepository >
109
+ <repository >
110
+ <id >releases</id >
111
+ <url >${releases.repository.url} </url >
112
+ </repository >
113
+ </distributionManagement >
114
+ </project >
0 commit comments