initial checkin
This commit is contained in:
commit
d052f187ed
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Maven
|
||||||
|
target
|
||||||
|
|
118
pom.xml
Normal file
118
pom.xml
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
<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>com.inteligr8.wildfly</groupId>
|
||||||
|
<artifactId>geotools-wildfly-module</artifactId>
|
||||||
|
<version>28.1</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<wildfly.module.id>org.geotools</wildfly.module.id>
|
||||||
|
<wildfly.version>27.0.1.Final</wildfly.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.inteligr8.wildfly.system</groupId>
|
||||||
|
<artifactId>javax.api</artifactId>
|
||||||
|
<version>${wildfly.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.inteligr8.wildfly.system</groupId>
|
||||||
|
<artifactId>org.apache.commons.lang3</artifactId>
|
||||||
|
<version>${wildfly.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.inteligr8.wildfly.system</groupId>
|
||||||
|
<artifactId>org.apache.commons.io</artifactId>
|
||||||
|
<version>${wildfly.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.inteligr8.wildfly.system</groupId>
|
||||||
|
<artifactId>jakarta.annotation.api</artifactId>
|
||||||
|
<version>${wildfly.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.inteligr8.wildfly.system</groupId>
|
||||||
|
<artifactId>com.fasterxml.jackson.core.jackson-core</artifactId>
|
||||||
|
<version>${wildfly.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.inteligr8.wildfly.system</groupId>
|
||||||
|
<artifactId>com.google.guava</artifactId>
|
||||||
|
<version>${wildfly.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.inteligr8.wildfly.system</groupId>
|
||||||
|
<artifactId>com.google.guava.failureaccess</artifactId>
|
||||||
|
<version>${wildfly.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.inteligr8.wildfly.system</groupId>
|
||||||
|
<artifactId>org.slf4j</artifactId>
|
||||||
|
<version>${wildfly.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.inteligr8.wildfly</groupId>
|
||||||
|
<artifactId>jts-wildfly-module</artifactId>
|
||||||
|
<version>1.19.0</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.geotools</groupId>
|
||||||
|
<artifactId>gt-jdbc</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.geotools</groupId>
|
||||||
|
<artifactId>gt-render</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.geotools</groupId>
|
||||||
|
<artifactId>gt-geojson</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.inteligr8.wildfly</groupId>
|
||||||
|
<artifactId>wildfly-module-plugin</artifactId>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>module</id>
|
||||||
|
<goals>
|
||||||
|
<goal>module-generate</goal>
|
||||||
|
<goal>module-resources</goal>
|
||||||
|
<goal>module-package</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>osgeo</id>
|
||||||
|
<url>https://repo.osgeo.org/repository/geotools-releases</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>osgeosol</id>
|
||||||
|
<url>https://maven.geo-solutions.it</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
</project>
|
Loading…
x
Reference in New Issue
Block a user