-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
117 lines (117 loc) · 4.02 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
<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>
<groupId>kiwi-postgis</groupId>
<artifactId>kiwi-postgis</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<geotools.version>15.1</geotools.version>
<geotk.version>4.0.4</geotk.version>
<sis.version>2.0-SNAPSHOT</sis.version>
<geoapi.version>4.0-M05</geoapi.version>
<jena.version>3.10.0</jena.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.apache.marmotta/kiwi-sparql -->
<dependency>
<groupId>org.apache.marmotta</groupId>
<artifactId>kiwi-sparql</artifactId>
<version>3.4.0</version>
</dependency>
<dependency>
<groupId>it.geosolutions.jaiext</groupId>
<artifactId>jaiext</artifactId>
<version>1.1.11</version>
<type>pom</type>
</dependency>
<!-- https://mvnrepository.com/artifact/ch.hsr/geohash -->
<dependency>
<groupId>ch.hsr</groupId>
<artifactId>geohash</artifactId>
<version>1.4.0</version>
</dependency>
<dependency>
<groupId>org.wololo</groupId>
<artifactId>jts2geojson</artifactId>
<version>0.13.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts-core -->
<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>1.16.1</version>
</dependency>
<dependency>
<groupId>org.opengis</groupId>
<artifactId>geoapi</artifactId>
<version>${geoapi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.sis.core</groupId>
<artifactId>sis-feature</artifactId>
<version>${sis.version}</version>
</dependency>
<dependency>
<groupId>org.apache.sis.core</groupId>
<artifactId>sis-metadata</artifactId>
<version>${sis.version}</version>
</dependency>
<dependency>
<groupId>org.apache.sis.core</groupId>
<artifactId>sis-utility</artifactId>
<version>${sis.version}</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>osgeo</id>
<name>Open Source Geospatial Foundation Repository</name>
<url>http://download.osgeo.org/webdav/geotools/</url>
</repository>
<repository>
<id>geosolutions</id>
<name>Geosolutions</name>
<url>http://maven.geo-solutions.it/</url>
</repository>
<repository>
<id>conveyal</id>
<name>Conveyal</name>
<url>http://maven.conveyal.com</url>
</repository>
<repository>
<id>north</id>
<name>north</name>
<url>https://52north.org/maven/repo/releases/</url>
</repository>
<repository>
<id>openkm</id>
<name>openkm</name>
<url>http://maven.openkm.com/</url>
</repository>
<repository>
<id>springplugins</id>
<name>springplugins</name>
<url>https://repo.spring.io/plugins-release/</url>
</repository>
<repository>
<id>geotoolkit</id>
<name>Geotk repository</name>
<url>http://maven.geotoolkit.org</url>
</repository>
</repositories>
</project>