39 Zeilen
1.5 KiB
XML
39 Zeilen
1.5 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.steamwar</groupId>
|
|
<artifactId>LixfelsProfiler</artifactId>
|
|
<version>1.0</version>
|
|
|
|
<properties>
|
|
<file.encoding>UTF-8</file.encoding>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<version>3.2.0</version>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addClasspath>true</addClasspath>
|
|
<mainClass>de.steamwar.Main</mainClass>
|
|
</manifest>
|
|
<manifestEntries>
|
|
<Agent-Class>de.steamwar.Agent</Agent-Class>
|
|
<Premain-Class>de.steamwar.Agent</Premain-Class>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<finalName>LixfelsProfiler</finalName>
|
|
</build>
|
|
</project> |