mirror of
https://github.com/Sheldan/gw2-tools.git
synced 2026-01-01 14:58:51 +00:00
50 lines
2.0 KiB
XML
50 lines
2.0 KiB
XML
<?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>dev.sheldan.gw2.tools</groupId>
|
|
<artifactId>gw2-tools</artifactId>
|
|
<version>0.0.2-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>packaging</artifactId>
|
|
<packaging>pom</packaging>
|
|
<properties>
|
|
<file.basedir>${project.basedir}/src/main/docker/</file.basedir>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
|
|
<!-- backend jar -->
|
|
<artifactItem>
|
|
<groupId>dev.sheldan.gw2.tools</groupId>
|
|
<artifactId>executable</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>exec</classifier>
|
|
<type>jar</type>
|
|
<overWrite>true</overWrite>
|
|
<outputDirectory>${file.basedir}/tools</outputDirectory>
|
|
<destFileName>app.jar</destFileName>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |