javafx-markdown-preview-all
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.raghul-tech</groupId> <artifactId>javafx-markdown-preview-all</artifactId> <version>1.0.3</version> </dependency>
<!-- * Copyright (C) 2025 Raghul-tech * https://github.com/raghul-tech * This file is part of JavaFX Markdown Preview. * * JavaFX Markdown Preview is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * JavaFX Markdown Preview is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with JavaFX Markdown Preview. If not, see <https://www.gnu.org/licenses/>. --> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.raghul-tech</groupId> <artifactId>javafx-markdown-preview-parent</artifactId> <version>1.0.3</version> </parent> <artifactId>javafx-markdown-preview-all</artifactId> <packaging>jar</packaging> <name>JavaFX Markdown Preview All</name> <description> A JavaFX Markdown Preview module bundled with Flexmark for Markdown rendering. This artifact provides a shaded JAR containing all necessary dependencies except JavaFX itself. Simply add your preferred JavaFX libraries as dependencies marked as provided. Includes utilities to display Markdown previews in WebView, VBox, Scene, Stage, and TabPane without requiring separate Flexmark installation. </description> <url>https://github.com/raghul-tech/JavaFX-Markdown-Preview</url> <dependencies> <!-- JavaFX marked as PROVIDED --> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-web</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-graphics</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-base</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-swing</artifactId> <version>${javafx.version}</version> <scope>provided</scope> </dependency> <!-- Flexmark (included in jar) --> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-all</artifactId> <version>0.64.8</version> </dependency> </dependencies> <build> <sourceDirectory>${project.basedir}/../javafx-markdown-preview/src/main/java</sourceDirectory> <resources> <resource> <directory>${project.basedir}/../javafx-markdown-preview/src/main/resources</directory> </resource> </resources> <plugins> <!-- Compiler --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <release>${java.version}</release> </configuration> </plugin> <!-- Shade plugin WITHOUT filters --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"/> </transformers> </configuration> </execution> </executions> </plugin> <!-- Source Jar Plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> <!-- Javadoc Jar Plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> </plugins> </build> </project>