syntaxhighlighterfx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.twalcari</groupId> <artifactId>syntaxhighlighterfx</artifactId> <version>3.0.0</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.twalcari</groupId> <artifactId>syntaxhighlighterfx</artifactId> <packaging>jar</packaging> <version>3.0.0</version> <name>Syntax Highlighter for JavaFX</name> <description>Synchronous or asynchronous syntax highlighter for RichTextFX StyleClassedTextArea</description> <url>https://github.com/twalcari/syntaxhighlighterfx</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>twalcari</id> <name>Thijs Walcarius</name> <email>thijs.walcarius@ugent.be</email> <url>http://github.com/twalcari</url> <organization>imec - IDLab, Department of Information Technology at Ghent University</organization> <organizationUrl>http://idlab.ugent.be</organizationUrl> </developer> <developer> <id>cws1989</id> <name>Chan Wai Shing</name> <email>cws1989@gmail.com</email> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>10</source> <target>10</target> </configuration> </plugin> <plugin> <groupId>com.amashchenko.maven.plugin</groupId> <artifactId>gitflow-maven-plugin</artifactId> <version>1.10.0</version> <configuration> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.fxmisc.richtext</groupId> <artifactId>richtextfx</artifactId> <version>0.9.1</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.2</version> </dependency> </dependencies> <scm> <url>https://github.com/twalcari/syntaxhighlighterfx</url> <connection>scm:git:git://github.com/twalcari/syntaxhighlighterfx.git</connection> <developerConnection>scm:git:git@github.com:twalcari/syntaxhighlighterfx.git</developerConnection> </scm> <issueManagement> <url>https://github.com/twalcari/syntaxhighlighterfx/issues</url> <system>GitHub Issues</system> </issueManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>perform-release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <configuration> <doclint>none</doclint> <additionalOptions> <additionalOption>-html5</additionalOption> </additionalOptions> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>