vnc-viewer-javafx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sshtools</groupId> <artifactId>vnc-viewer-javafx</artifactId> <version>3.0.1</version> </dependency>
<!-- JavaFX VNC Viewer - Simple JavaFX based VNC viewer based on SSHTools' RFB Components. Copyright © 2006 SSHTOOLS Limited (support@sshtools.com) This program 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. This program 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 this program. If not, see <http://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 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>vnc-viewer-javafx</artifactId> <name>JavaFX VNC Viewer</name> <description>Simple JavaFX based VNC viewer based on SSHTools' RFB Components.</description> <parent> <groupId>com.sshtools</groupId> <artifactId>rfb</artifactId> <version>3.0.1</version> <relativePath>..</relativePath> </parent> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <outputDirectory>target/classes</outputDirectory> <testOutputDirectory>target/test-classes</testOutputDirectory> <resources> <resource> <targetPath>.</targetPath> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <targetPath>.</targetPath> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.sshtools</groupId> <artifactId>rfb-viewer-javafx</artifactId> <version>${project.version}</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.5</version> <scope>compile</scope> </dependency> </dependencies> </project>