70 lines
2.4 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>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.53</version>
</parent>
<groupId>io.github.asvanberg</groupId>
<artifactId>better-walldisplay</artifactId>
<version>1.0.0</version>
<packaging>hpi</packaging>
<properties>
<jenkins.version>2.379</jenkins.version>
</properties>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
<pluginRepository>
<id>stil4m-releases</id>
<name>stil4m-releases</name>
<url>https://github.com/stil4m/maven-repository/raw/master/releases/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>net.unit8.maven.plugins</groupId>
<artifactId>elm-maven-plugin</artifactId>
<version>0.1.0</version>
<configuration>
<elmVersion>0.19.0</elmVersion>
<installDirectory>${project.build.directory}/elm</installDirectory>
<arguments>make src/main/elm/Main.elm --output=${project.build.directory}/${project.build.finalName}/app.js</arguments>
</configuration>
<executions>
<execution>
<id>elm-install</id>
<goals>
<goal>install</goal>
</goals>
</execution>
<execution>
<id>elm-make</id>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>