blob: f18032689d03f56efe1b16dc75e03f81a64379b7 [file] [log] [blame]
<?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">
<artifactId>baremaps-cli</artifactId>
<name>baremaps-cli</name>
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>baremaps</artifactId>
<groupId>com.baremaps</groupId>
<version>0.6.5</version>
</parent>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>${version.plugin.compiler}</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>info.picocli</groupId>
<artifactId>picocli-codegen</artifactId>
<version>${version.lib.picocli}</version>
</path>
</annotationProcessorPaths>
<compilerArgs>
<arg>-Aproject=${project.groupId}/${project.artifactId}</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>make-zip</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<finalName>baremaps</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<from>
<image>adoptopenjdk/openjdk11:alpine</image>
</from>
<to>
<image>registry.hub.docker.com/baremaps/baremaps</image>
<tags>v${project.version}</tags>
</to>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-blob</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-blob-s3</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-osm</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-osm-lmdb</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-osm-postgres</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-stream</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-server-common</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-server-editor</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-server-ogcapi</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-server-studio</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-server-viewer</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-tile</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-tile-mbtiles</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-testing</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-tile-postgres</artifactId>
</dependency>
<dependency>
<groupId>com.baremaps</groupId>
<artifactId>baremaps-postgres</artifactId>
</dependency>
<dependency>
<artifactId>picocli</artifactId>
<groupId>info.picocli</groupId>
</dependency>
<dependency>
<groupId>io.servicetalk</groupId>
<artifactId>servicetalk-data-jackson</artifactId>
</dependency>
<dependency>
<groupId>io.servicetalk</groupId>
<artifactId>servicetalk-data-jackson-jersey</artifactId>
</dependency>
<dependency>
<groupId>io.servicetalk</groupId>
<artifactId>servicetalk-http-netty</artifactId>
</dependency>
<dependency>
<groupId>io.servicetalk</groupId>
<artifactId>servicetalk-transport-netty</artifactId>
</dependency>
<dependency>
<groupId>io.servicetalk</groupId>
<artifactId>servicetalk-http-router-jersey</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
</dependency>
</dependencies>
</project>