<?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>com.megatim.manuel</groupId>
|
<artifactId>mgt-manuel-module</artifactId>
|
<version>1.0</version>
|
<packaging>pom</packaging>
|
<name>mgt-manuel-module</name>
|
<description>Manuel d'application : moteur de generation Word/PPT vers HTML + viewer JavaFX
|
themable (mgt-manuel-core) et application autonome de generation (mgt-manuel-studio).</description>
|
|
<modules>
|
<module>mgt-manuel-core</module>
|
<module>mgt-manuel-studio</module>
|
</modules>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<!-- release 16 par defaut : la lib doit rester consommable par sirius-ft-client
|
qui compile en release 16 (classfile 60). Le studio surcharge a 17. -->
|
<maven.compiler.release>16</maven.compiler.release>
|
<javafx.version>17.0.7</javafx.version>
|
<poi.version>5.2.5</poi.version>
|
<jackson.version>2.17.2</jackson.version>
|
<slf4j.version>2.0.13</slf4j.version>
|
<logback.version>1.5.6</logback.version>
|
<log4j.version>2.20.0</log4j.version>
|
</properties>
|
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>org.openjfx</groupId>
|
<artifactId>javafx-base</artifactId>
|
<version>${javafx.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.openjfx</groupId>
|
<artifactId>javafx-graphics</artifactId>
|
<version>${javafx.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.openjfx</groupId>
|
<artifactId>javafx-controls</artifactId>
|
<version>${javafx.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.openjfx</groupId>
|
<artifactId>javafx-web</artifactId>
|
<version>${javafx.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.openjfx</groupId>
|
<artifactId>javafx-fxml</artifactId>
|
<version>${javafx.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-scratchpad</artifactId>
|
<version>${poi.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
<artifactId>jackson-databind</artifactId>
|
<version>${jackson.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
<version>${slf4j.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>ch.qos.logback</groupId>
|
<artifactId>logback-classic</artifactId>
|
<version>${logback.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.logging.log4j</groupId>
|
<artifactId>log4j-to-slf4j</artifactId>
|
<version>${log4j.version}</version>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
|
<build>
|
<pluginManagement>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.13.0</version>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-shade-plugin</artifactId>
|
<version>3.5.1</version>
|
</plugin>
|
<plugin>
|
<groupId>org.openjfx</groupId>
|
<artifactId>javafx-maven-plugin</artifactId>
|
<version>0.0.8</version>
|
</plugin>
|
</plugins>
|
</pluginManagement>
|
</build>
|
</project>
|