Skip to content

Commit

Permalink
openmap-mini 6.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
halset committed Jan 31, 2024
1 parent eace8e8 commit 3fa45aa
Show file tree
Hide file tree
Showing 6 changed files with 105 additions and 2 deletions.
6 changes: 6 additions & 0 deletions releases/openmap/openmap-mini/6.0.14/_remote.repositories
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Wed Jan 31 15:00:47 CET 2024
openmap-mini-6.0.14-test-sources.jar>=
openmap-mini-6.0.14-sources.jar>=
openmap-mini-6.0.14.jar>=
openmap-mini-6.0.14.pom>=
Binary file not shown.
Binary file not shown.
Binary file not shown.
96 changes: 96 additions & 0 deletions releases/openmap/openmap-mini/6.0.14/openmap-mini-6.0.14.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<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>openmap</groupId>
<artifactId>openmap-mini</artifactId>
<version>6.0.14</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
</properties>

<repositories>
<repository>
<id>osgeo</id>
<name>Open Source Geospatial Foundation Repository</name>
<url>https://repo.osgeo.org/repository/release/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>1.19.0</version>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.36</version>
</dependency>
<dependency>
<groupId>javax.media</groupId>
<artifactId>jai_core</artifactId>
<version>1.1.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.media</groupId>
<artifactId>jai_codec</artifactId>
<version>1.1.3</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.media</groupId>
<artifactId>jai_imageio</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>${java.version}</release>
</configuration>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>


</project>
5 changes: 3 additions & 2 deletions releases/openmap/openmap-mini/maven-metadata-local.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
<groupId>openmap</groupId>
<artifactId>openmap-mini</artifactId>
<versioning>
<release>5.0.14</release>
<release>6.0.14</release>
<versions>
<version>5.0.14</version>
<version>6.0.14</version>
</versions>
<lastUpdated>20240131135138</lastUpdated>
<lastUpdated>20240131140043</lastUpdated>
</versioning>
</metadata>

0 comments on commit 3fa45aa

Please sign in to comment.