Skip to content

Commit

Permalink
Update versions, add exclusions and add geotoolkit repository
Browse files Browse the repository at this point in the history
  • Loading branch information
dstenger committed Oct 10, 2024
1 parent 19811e2 commit 0efe5c7
Showing 1 changed file with 49 additions and 18 deletions.
67 changes: 49 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,50 +46,80 @@
<properties>
<ets-code>ogcapi-edr10</ets-code>
<spec-version>1.0</spec-version>
<docker.teamengine.version>6.0.0-SNAPSHOT</docker.teamengine.version>
<docker.teamengine.version>6.0.0-RC1</docker.teamengine.version>
</properties>

<dependencies>
<dependency>
<groupId>org.opengis.cite.teamengine</groupId>
<artifactId>teamengine-spi</artifactId>
<version>6.0.0-SNAPSHOT</version>
<version>6.0.0-RC1</version>
</dependency>
<dependency>
<groupId>org.opengis.cite</groupId>
<artifactId>geomatics-geotk</artifactId>
<version>1.18-SNAPSHOT</version>
<exclusions>
<exclusion>
<artifactId>jakarta.xml.bind-api</artifactId>
<groupId>jakarta.xml.bind</groupId>
</exclusion>
<exclusion>
<artifactId>sis-metadata</artifactId>
<groupId>org.apache.sis.core</groupId>
</exclusion>
<exclusion>
<artifactId>sis-referencing</artifactId>
<groupId>org.apache.sis.core</groupId>
</exclusion>
<exclusion>
<artifactId>sis-utility</artifactId>
<groupId>org.apache.sis.core</groupId>
</exclusion>
<exclusion>
<artifactId>jakarta.activation-api</artifactId>
<groupId>jakarta.activation</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.reprezen.kaizen</groupId>
<artifactId>openapi-parser</artifactId>
<version>4.0.4</version>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>5.4.0</version>
</dependency>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.opengis</groupId>
<artifactId>geoapi-pending</artifactId>
<version>3.1-M04</version>
</dependency>
<dependency>
<groupId>com.github.erosb</groupId>
<artifactId>everit-json-schema</artifactId>
<version>1.14.1</version>
<exclusions>
<exclusion>
<artifactId>json</artifactId>
<groupId>org.json</groupId>
</exclusion>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
<exclusion>
<artifactId>joda-time</artifactId>
<groupId>joda-time</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.9.0</version>
<exclusions>
<exclusion>
<artifactId>jcommander</artifactId>
Expand All @@ -100,47 +130,38 @@
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20231013</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
<version>3.1.6</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>3.1.6</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<version>3.1.6</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
<artifactId>jersey-apache-connector</artifactId>
<version>2.30.1</version>
</dependency>
<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.82</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.sis.non-free</groupId>
<artifactId>sis-embedded-data</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.11.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -387,6 +408,16 @@
</profile>
</profiles>

<repositories>
<!-- Geotk milestones are not deployed in Central repository. -->
<repository>
<id>geotoolkit</id>
<name>Geotk Modules</name>
<url>https://nexus.geomatys.com/repository/maven-public</url>
<layout>default</layout>
</repository>
</repositories>

<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
Expand Down

0 comments on commit 0efe5c7

Please sign in to comment.