mirror of
https://inf.pirckheimer-gymnasium.de/kebab/kebab
synced 2026-08-26 16:31:23 +00:00
80 lines
3.0 KiB
XML
80 lines
3.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>
|
|
|
|
<groupId>de.pirckheimer-gymnasium</groupId>
|
|
<artifactId>project</artifactId>
|
|
<version>0.1.0</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>de.pirckheimer-gymnasium</groupId>
|
|
<artifactId>engine-pi</artifactId>
|
|
<version>0.49.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
<!--
|
|
https://code.revelc.net/formatter-maven-plugin/
|
|
https://code.revelc.net/formatter-maven-plugin/examples.html#basic-configuration-using-external-resource -->
|
|
<plugin>
|
|
<groupId>net.revelc.code.formatter</groupId>
|
|
<artifactId>formatter-maven-plugin</artifactId>
|
|
<version>2.29.0</version>
|
|
<configuration>
|
|
<configFile>eclipse-formatter.xml</configFile>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>format</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>de.pirckheimer-gymnasium</groupId>
|
|
<artifactId>engine-pi-build-tools</artifactId>
|
|
<version>0.2.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
<!-- https://maven.apache.org/plugins/maven-javadoc-plugin/examples/stylesheet-configuration.html -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.12.0</version>
|
|
<configuration>
|
|
<stylesheetfile>javadoc-stylesheet.css</stylesheetfile>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>de.pirckheimer-gymnasium</groupId>
|
|
<artifactId>engine-pi-build-tools</artifactId>
|
|
<version>0.2.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|