Select Git revision
pom.xml 3.81 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.tobias.playpad</groupId>
<artifactId>PlayWallPlugins</artifactId>
<version>7.0.0-SNAPSHOT</version>
</parent>
<artifactId>PlayWallPluginEqualizer</artifactId>
<properties>
<project.outputDirectory>../../build/${project.version}</project.outputDirectory>
<project.artifactName>${project.artifactId}-v${project.version}</project.artifactName>
</properties>
<dependencies>
<dependency>
<groupId>de.tobias.playpad</groupId>
<artifactId>PlayWallCore</artifactId>
<version>${core.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>de.thecodelabs</groupId>
<artifactId>versionizer-maven-plugin</artifactId>
<version>1.0.1</version>
<configuration>
<resourceFile>plugin.yml</resourceFile>
</configuration>
<executions>
<execution>
<id>resource-fill</id>
<goals>
<goal>resource-fill</goal>
</goals>
<phase>compile</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<outputDirectory>${project.outputDirectory}</outputDirectory>
<finalName>${project.artifactName}</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>