tm4javafx-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mkpaz</groupId> <artifactId>tm4javafx-parent</artifactId> <version>0.1.0</version> </dependency>
<?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>io.github.mkpaz</groupId> <artifactId>tm4javafx-parent</artifactId> <version>0.1.0</version> <packaging>pom</packaging> <name>tm4javafx</name> <description>TextMate (VSCode) syntax highlighting for JavaFX</description> <url>https://github.com/mkpaz/tm4javafx</url> <licenses> <license> <name>MIT License</name> <url>https://raw.githubusercontent.com/mkpaz/tm4javafx/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>mkpaz</id> <name>mkpaz</name> </developer> </developers> <scm> <developerConnection>scm:git:https://github.com/mkpaz/tm4javafx.git</developerConnection> <connection>${project.scm.developerConnection}</connection> <url>${project.url}</url> </scm> <modules> <module>tm4javafx</module> <module>demo</module> </modules> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>24</maven.compiler.source> <maven.compiler.target>24</maven.compiler.target> <java.version>24</java.version> <javafx.version>25-ea+24</javafx.version> <lib.junit.version>5.13.4</lib.junit.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.github.mkpaz</groupId> <artifactId>tm4java</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>io.github.mkpaz</groupId> <artifactId>tm4javafx</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jspecify</groupId> <artifactId>jspecify</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>jfx-incubator-richtext</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>jfx-incubator-input</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${lib.junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${lib.junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${lib.junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.27.3</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <release>${java.version}</release> <compilerArgs> <arg>--add-modules</arg> <arg>jfx.incubator.richtext</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.6.0</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>10.6.0</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.openjfx</groupId> <artifactId>javafx-maven-plugin</artifactId> <version>0.0.8</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <!-- package project sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-source</id> <phase>compile</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- package project javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclint>none</doclint> </configuration> </plugin> <!-- sign deployed artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <excludeArtifacts>tm4javafx-demo</excludeArtifacts> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>