common-location
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.opensabe-tech</groupId>
<artifactId>common-location</artifactId>
<version>2.0.9</version>
</dependency><?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>
<parent>
<groupId>io.github.opensabe-tech</groupId>
<artifactId>spring-cloud-parent</artifactId>
<version>2.0.9</version>
<relativePath>../spring-cloud-parent/pom.xml</relativePath>
</parent>
<artifactId>common-location</artifactId>
<version>2.0.9</version>
<name>${project.artifactId}</name>
<description>${project.artifactId}</description>
<packaging>jar</packaging>
<properties>
<opencsv.version>5.10</opencsv.version>
<geodesy.version>1.1.3</geodesy.version>
</properties>
<dependencies>
<dependency>
<groupId>io.github.opensabe-tech</groupId>
<artifactId>spring-framework-parent-common</artifactId>
</dependency>
<dependency>
<groupId>io.github.opensabe-tech</groupId>
<artifactId>spring-cloud-parent-web-common</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.github.opensabe-tech</groupId>
<artifactId>common-utils</artifactId>
</dependency>
<dependency>
<groupId>io.github.opensabe-tech</groupId>
<artifactId>spring-boot-starter-redisson</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.opencsv/opencsv -->
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>${opencsv.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.gavaghan/geodesy -->
<dependency>
<groupId>org.gavaghan</groupId>
<artifactId>geodesy</artifactId>
<version>${geodesy.version}</version>
</dependency>
<dependency>
<groupId>io.github.opensabe-tech</groupId>
<artifactId>common-testcontainers</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>