forked from geosolutions-it/jgridshift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
48 lines (44 loc) · 1.46 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
<?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>it.geosolutions.jgridshift</groupId>
<artifactId>jgridshift</artifactId>
<packaging>pom</packaging>
<version>1.3</version>
<properties>
<maven.compiler.target>6</maven.compiler.target>
<maven.compiler.source>6</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>osgeo</id>
<name>Open Source Geospatial Foundation - WebDAV upload</name>
<url>dav:http://download.osgeo.org/upload/geotools/</url>
</repository>
<snapshotRepository>
<id>boundless</id>
<uniqueVersion>false</uniqueVersion>
<name>Boundless Snapshot Repository</name>
<url>https://repo.boundlessgeo.com/snapshot/</url>
</snapshotRepository>
</distributionManagement>
<modules>
<module>core</module>
<module>jca</module>
<module>sample</module>
</modules>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav</artifactId>
<version>1.0-beta-2</version>
</extension>
</extensions>
</build>
</project>