Skip to content

Commit

Permalink
Merge pull request #2 from ElectronicChartCentre/route-converter-add
Browse files Browse the repository at this point in the history
added route converter
  • Loading branch information
kjetila committed Jan 4, 2024
2 parents b87d9e6 + db6df8b commit 281edd2
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 0 deletions.
Binary file not shown.
65 changes: 65 additions & 0 deletions releases/no/ecc/route-converter/1.0/RouteConverter-1.0.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>no.ecc</groupId>
<artifactId>RouteConverter</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>route-converter</name>
<url>http://maven.apache.org</url>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jackson.version>2.14.0</jackson.version>
</properties>

<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-csv</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>${jackson.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.woodstox</groupId>
<artifactId>woodstox-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>1.19.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
4 changes: 4 additions & 0 deletions releases/no/ecc/route-converter/1.0/_remote.repositories
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#NOTE: This is a Maven Resolver internal implementation file, its format can be changed without prior notice.
#Thu Jan 04 12:17:02 CET 2024
RouteConverter-1.0.jar>=
RouteConverter-1.0.pom>=
13 changes: 13 additions & 0 deletions releases/no/ecc/route-converter/maven-metadata-local.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>no.ecc</groupId>
<artifactId>RouteConverter</artifactId>
<versioning>
<release>1.0</release>
<versions>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</versions>
<lastUpdated>20240104111701</lastUpdated>
</versioning>
</metadata>

0 comments on commit 281edd2

Please sign in to comment.