You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.3 KiB
65 lines
2.3 KiB
<?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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
<artifactId>airsonic</artifactId>
|
|
<version>10.3.0-SNAPSHOT</version>
|
|
<groupId>org.airsonic.player</groupId>
|
|
</parent>
|
|
<packaging>pom</packaging>
|
|
<artifactId>airsonic-docker</artifactId>
|
|
<name>Airsonic Docker Image</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.airsonic.player</groupId>
|
|
<artifactId>airsonic-main</artifactId>
|
|
<version>10.3.0-SNAPSHOT</version>
|
|
<type>war</type>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.spotify</groupId>
|
|
<artifactId>dockerfile-maven-plugin</artifactId>
|
|
<version>1.4.9</version>
|
|
<executions>
|
|
<execution>
|
|
<id>default</id>
|
|
<goals>
|
|
<goal>build</goal>
|
|
</goals>
|
|
<phase>package</phase>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<repository>airsonic/airsonic</repository>
|
|
<tag>${project.version}</tag>
|
|
<retryCount>0</retryCount>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<configuration>
|
|
<stripClassifier>true</stripClassifier>
|
|
<stripVersion>true</stripVersion>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>copy</id>
|
|
<phase>generate-sources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|
|
|