tornadofx-fx18k16
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.blaisemath.tornado</groupId> <artifactId>tornadofx-fx18k16</artifactId> <version>2.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8" standalone="no"?><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> <!-- This is a version of TornadoFx updated for Java11, JavaFx18, and Kotlin 1.6.21. It was forked from the jdk10 branch at https://github.com/edvin/tornadofx. There are a few minor changes to work with the newer versions of Java, JavaFx, and Kotlin, but the majority of the code is unchanged. --> <groupId>com.googlecode.blaisemath.tornado</groupId> <artifactId>tornadofx-fx18k16</artifactId> <version>2.0.1</version> <packaging>jar</packaging> <name>TornadoFX</name> <description>Lightweight JavaFX Framework for Kotlin</description> <url>https://github.com/edvin/tornadofx</url> <dependencies> <dependency> <groupId>javax.json</groupId> <artifactId>javax.json-api</artifactId> <version>${org.glassfish.javax.json.version}</version> </dependency> <dependency> <groupId>org.glassfish</groupId> <artifactId>javax.json</artifactId> <version>${org.glassfish.javax.json.version}</version> <classifier>module</classifier> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${org.apache.httpcomponents.httpclient.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.framework</artifactId> <version>${org.apache.felix.framework.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-jdk8</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>de.jensd</groupId> <artifactId>fontawesomefx-fontawesome</artifactId> <version>${de.jensd.fontawesomefx.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testfx</groupId> <artifactId>testfx-core</artifactId> <version>${org.testfx.testfx-core.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testfx</groupId> <artifactId>testfx-junit</artifactId> <version>${org.testfx.testfx-junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-base</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-media</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-swing</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-web</artifactId> <version>${javafx.version}</version> </dependency> </dependencies> <distributionManagement> <repository> <id>sonatype-nexus</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <organization> <name>SYSE</name> <url>https://www.syse.no/</url> </organization> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Edvin Syse</name> <email>es@syse.no</email> <organization>SYSE AS</organization> <organizationUrl>https://www.syse.no</organizationUrl> </developer> <developer> <name>Thomas Nield</name> <email>thomasnield@live.com</email> <organization>Southwest Airlines</organization> <organizationUrl>https://www.southwest.com/</organizationUrl> </developer> <developer> <name>Matthew Turnblom</name> <email>uberawesomeemailaddressofdoom@gmail.com</email> <organization>Xactware</organization> <organizationUrl>https://www.xactware.com/</organizationUrl> </developer> <developer> <name>Elisha Peterson</name> <email>triathematician@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:triathematician/tornadofx.git</connection> <developerConnection>scm:git:git@github.com:triathematician/tornadofx.git</developerConnection> <url>git@github.com:edvin/triathematician.git</url> </scm> <build> <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven.release.version}</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> <useReleaseProfile>false</useReleaseProfile> <arguments>-Psonatype-oss-release</arguments> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>kotlin-maven-plugin</artifactId> <groupId>org.jetbrains.kotlin</groupId> <version>${kotlin.version}</version> <configuration> <jvmTarget>1.8</jvmTarget> </configuration> <executions> <execution> <id>compile</id> <phase>process-sources</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>test-compile</id> <goals> <goal>test-compile</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> <release>11</release> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <phase>pre-site</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> <configuration> <reportNotDocumented>false</reportNotDocumented> <skipEmptyPackages>true</skipEmptyPackages> <jdkVersion>8</jdkVersion> <impliedPlatforms> <platform>JVM</platform> </impliedPlatforms> <noStdlibLink>true</noStdlibLink> <noJdkLink>true</noJdkLink> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.version}</version> <executions> <execution> <phase>compile</phase> <goals> <goal>aggregate</goal> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${maven.jar.version}</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven.bundle.version}</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Bundle-Activator>tornadofx.osgi.impl.Activator</Bundle-Activator> <Bundle-SymbolicName>no.tornado.tornadofx</Bundle-SymbolicName> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>deploy</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.version}</version> <configuration> <argLine> --add-exports javafx.graphics/com.sun.javafx.application=ALL-UNNAMED --add-exports tornadofx/tornadofx.tests=kotlin.reflect --add-opens tornadofx/tornadofx.tests=javafx.base --add-reads tornadofx=jdk.httpserver </argLine> </configuration> </plugin> </plugins> </build> <!-- -add-opens tornadofx.tests=javafx.base -add-reads jdk.httpserver=tornadofx --> <profiles> <profile> <!-- this is for building sources & javadocs, signing, & deploying to staging repo --> <id>sonatype-oss-release</id> <build> <plugins> <!-- build sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- build javadocs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- sign the artifacts with gpg (requires command-line utility) --> <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> <!-- deploy to staging repo --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <pluginRepositories> <pluginRepository> <id>jcenter</id> <name>JCenter</name> <url>https://jcenter.bintray.com/</url> </pluginRepository> </pluginRepositories> <properties> <javafx.version>18.0.2</javafx.version> <kotlin.version>1.6.21</kotlin.version> <org.glassfish.javax.json.version>1.1.4</org.glassfish.javax.json.version> <org.apache.httpcomponents.httpclient.version>4.5.13</org.apache.httpcomponents.httpclient.version> <org.apache.felix.framework.version>7.0.5</org.apache.felix.framework.version> <junit.version>4.13.2</junit.version> <org.testfx.testfx-core.version>4.0.15-alpha</org.testfx.testfx-core.version> <org.testfx.testfx-junit.version>4.0.15-alpha</org.testfx.testfx-junit.version> <de.jensd.fontawesomefx.version>4.7.0-9.1.2</de.jensd.fontawesomefx.version> <maven.release.version>2.1</maven.release.version> <maven.compiler.version>3.8.0</maven.compiler.version> <maven.source.version>3.0.1</maven.source.version> <maven.jar.version>3.0.2</maven.jar.version> <maven.bundle.version>3.5.1</maven.bundle.version> <maven.gpg.version>1.4</maven.gpg.version> <maven.surefire.version>3.0.0-M3</maven.surefire.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> </properties> </project>