Select Git revision
pom.xml 4.86 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">
<parent>
<artifactId>PlayWallPlugins</artifactId>
<groupId>de.tobias.playpad</groupId>
<version>7.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>PlayWallPluginWebAPI</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>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sparkjava</groupId>
<artifactId>spark-core</artifactId>
<version>${spark-core.version}</version>
</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>
<!--Scala Plugin-->
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<executions>
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>