javafx-maven-archetypes
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-maven-archetypes</artifactId> <version>0.0.6</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>org.openjfx</groupId> <artifactId>javafx-maven-archetypes</artifactId> <version>0.0.6</version> <packaging>pom</packaging> <name>Maven Archetypes for JavaFX</name> <description>Maven archetypes for creating different types of JavaFX application.</description> <url>https://openjfx.io</url> <modules> <module>javafx-archetype-simple</module> <module>javafx-archetype-fxml</module> </modules> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <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> <configuration> <gpgArguments> <gpgArgument>--pinentry-mode</gpgArgument> <gpgArgument>loopback</gpgArgument> </gpgArguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> <organization> <name>Gluon</name> <url>https://www.gluonhq.com</url> </organization> <issueManagement> <system>GitHub</system> <url>https://github.com/openjfx/javafx-maven-archetypes/issues</url> </issueManagement> <licenses> <license> <name>BSD 3-Clause</name> <url>https://opensource.org/licenses/BSD-3-Clause</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Abhinay Agarwal</name> <email>abhinay.agarwal@gluonhq.com</email> <organization>Gluon</organization> <organizationUrl>https://www.gluonhq.com</organizationUrl> </developer> <developer> <name>José Pereda</name> <email>jose.pereda@gluonhq.com</email> <organization>Gluon</organization> <organizationUrl>https://www.gluonhq.com</organizationUrl> </developer> </developers> <scm> <url>https://github.com/openjfx/javafx-maven-archetypes</url> <connection>scm:git:git://github.com/openjfx/javafx-maven-archetypes.git</connection> <developerConnection>scm:git:ssh://git@github.com:openjfx/javafx-maven-archetypes.git</developerConnection> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>