![JAR search and dependency download from the Maven repository](/logo.png)
archetype-resources.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javafx-basic-archetype
Show all versions of javafx-basic-archetype
The JavaFX Basic Archetype provides core functionality for assembling JavaFX applications.
<?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>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <name>${artifactId}</name> <packaging>jar</packaging> <version>${version}</version> <organization> <!-- Used as the 'Vendor' for JNLP generation --> <name>${organizationName}</name> </organization> <properties> <slf4j.version>1.6.1</slf4j.version> </properties> <build> <finalName>${artifactId}</finalName> <plugins> <plugin> <groupId>com.zenjava</groupId> <artifactId>javafx-maven-plugin</artifactId> <version>2.0</version> <configuration> <mainClass>${package}.MainApp</mainClass> <!-- only required if signing the jar file --> <keyStoreAlias>example-user</keyStoreAlias> <keyStorePassword>example-password</keyStorePassword> <allPermissions>true</allPermissions> </configuration> </plugin> </plugins> </build> <dependencies> <!-- MigLayout --> <dependency> <groupId>com.miglayout</groupId> <artifactId>miglayout-javafx</artifactId> <version>4.2</version> </dependency> <!-- Apache Commons --> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> </dependency> </dependencies> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy