keyboardfx-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.dlsc.keyboardfx</groupId> <artifactId>keyboardfx-demo</artifactId> <version>1.1.1</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>com.dlsc.keyboardfx</groupId> <name>KeyboardFXDemo</name> <version>1.1.1</version> <artifactId>keyboardfx-demo</artifactId> <description>Demos for KeyboardFX</description> <parent> <groupId>com.dlsc.keyboardfx</groupId> <artifactId>parent</artifactId> <version>1.1.1</version> <relativePath>../pom.xml</relativePath> </parent> <url>https://github.com/dlemmermann/KeyboardFX</url> <licenses> <license> <name>Apache 2.0</name> </license> </licenses> <scm> <url>https://github.com/dlsc-software-consulting-gmbh/KeyboardFX</url> </scm> <properties> <main.class>com.dlsc.keyboardfx.demo.KeyboardApp</main.class> </properties> <repositories> <repository> <id>jpro - sandec repository</id> <url>https://sandec.jfrog.io/artifactory/repo</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>jpro - sandec repository</id> <url>https://sandec.jfrog.io/artifactory/repo</url> </pluginRepository> </pluginRepositories> <build> <plugins> <plugin> <groupId>org.openjfx</groupId> <artifactId>javafx-maven-plugin</artifactId> <version>0.0.4</version> <configuration> <mainClass>${main.class}</mainClass> </configuration> </plugin> <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</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>11</source> <target>11</target> </configuration> </plugin> <plugin> <groupId>com.sandec.jpro</groupId> <artifactId>jpro-maven-plugin</artifactId> <version>2020.1.0</version> <configuration> <visible>false</visible> <mainClassName> com.dlsc.keyboardfx.demo.PhotoViewApp </mainClassName> <openingPath>/</openingPath> </configuration> <executions> <execution> <goals> <goal>run</goal> </goals> </execution> <execution> <id>create-jpro-release</id> <phase>package</phase> <goals> <goal>release</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>fr.brouillard.oss</groupId> <artifactId>cssfx</artifactId> <version>11.4.0</version> </dependency> <dependency> <groupId>com.dlsc.keyboardfx</groupId> <artifactId>keyboardfx</artifactId> <version>1.1.1</version> </dependency> <!-- Logging --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> </dependency> </dependencies> </project>