<?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>com.megatim.manuel</groupId>
|
<artifactId>mgt-manuel-module</artifactId>
|
<version>1.0</version>
|
</parent>
|
|
<artifactId>mgt-manuel-core</artifactId>
|
<name>mgt-manuel-core</name>
|
<description>Bibliotheque du manuel d'application : conversion Word/PowerPoint vers bundle
|
HTML + toc.json (Apache POI) et viewer JavaFX themable (ManuelTheme).</description>
|
|
<dependencies>
|
<!-- JavaFX en provided : l'application hote impose sa version (17+ requis, module web). -->
|
<dependency>
|
<groupId>org.openjfx</groupId>
|
<artifactId>javafx-controls</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.openjfx</groupId>
|
<artifactId>javafx-web</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
<!-- Moteur de conversion -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-scratchpad</artifactId>
|
</dependency>
|
<!-- toc.json / sources.json -->
|
<dependency>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
<artifactId>jackson-databind</artifactId>
|
</dependency>
|
<!-- Facade de logging uniquement : aucun binding embarque, l'hote choisit. -->
|
<dependency>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
</dependency>
|
</dependencies>
|
</project>
|