<?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/maven-v4_0_0.xsd">
|
<parent>
|
<artifactId>mgt-manuel-module</artifactId>
|
<groupId>com.megatim.manuel</groupId>
|
<version>1.0</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
<artifactId>mgt-manuel-studio</artifactId>
|
<name>mgt-manuel-studio</name>
|
<description>Application JavaFX autonome de generation du manuel d'application
|
(import Word/PowerPoint, generation du bundle HTML, apercu, themes).</description>
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.openjfx</groupId>
|
<artifactId>javafx-maven-plugin</artifactId>
|
<configuration>
|
<mainClass>com.megatim.manuel.studio.StudioApp</mainClass>
|
</configuration>
|
</plugin>
|
<plugin>
|
<artifactId>maven-shade-plugin</artifactId>
|
<executions>
|
<execution>
|
<phase>package</phase>
|
<goals>
|
<goal>shade</goal>
|
</goals>
|
<configuration>
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
<transformers>
|
<transformer>
|
<mainClass>com.megatim.manuel.studio.Launcher</mainClass>
|
</transformer>
|
<transformer />
|
</transformers>
|
<filters>
|
<filter>
|
<artifact>*:*</artifact>
|
<excludes>
|
<exclude>META-INF/*.SF</exclude>
|
<exclude>META-INF/*.DSA</exclude>
|
<exclude>META-INF/*.RSA</exclude>
|
<exclude>module-info.class</exclude>
|
</excludes>
|
</filter>
|
</filters>
|
</configuration>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
<properties>
|
<maven.compiler.release>17</maven.compiler.release>
|
<exec.mainClass>com.megatim.manuel.studio.StudioApp</exec.mainClass>
|
</properties>
|
</project>
|