tm4javafx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mkpaz</groupId> <artifactId>tm4javafx</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> <parent> <groupId>io.github.mkpaz</groupId> <artifactId>tm4javafx-parent</artifactId> <version>0.1.0</version> </parent> <artifactId>tm4javafx</artifactId> <name>tm4javafx</name> <description>TextMate (VSCode) syntax highlighting for JavaFX</description> <url>https://github.com/mkpaz/tm4javafx</url> <dependencies> <dependency> <groupId>org.jspecify</groupId> <artifactId>jspecify</artifactId> </dependency> <dependency> <groupId>io.github.mkpaz</groupId> <artifactId>tm4java</artifactId> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>jfx-incubator-richtext</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <configLocation>checkstyle.xml</configLocation> <consoleOutput>true</consoleOutput> <failsOnError>false</failsOnError> <linkXRef>false</linkXRef> </configuration> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>