jfx-sss-fxml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.sosuisen</groupId> <artifactId>jfx-sss-fxml</artifactId> <version>1.1.3</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>io.github.sosuisen</groupId> <artifactId>jfx-sss-fxml</artifactId> <version>1.1.3</version> <packaging>maven-archetype</packaging> <name>jfx-sss-fxml</name> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.3.1</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>3.3.1</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.0</version> <configuration> <additionalOptions> <!-- skip strict check java doc--> <additionalOption>-Xdoclint:none</additionalOption> </additionalOptions> </configuration> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals><goal>jar</goal></goals> </execution> </executions> </plugin> <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> </plugins> </build> <description>JavaFX archetype for a non-modular FXML project. This archetype is designed for Java beginners. To keep things simple, it does not incorporate the Java module system.</description> <url>https://github.com/sosuisen/</url> <developers> <developer> <name>Hidekazu Kubota</name> <email>hidekazu.kubota@gmail.com</email> <organization>Sosuisha</organization> <organizationUrl>https://sosuisha.com</organizationUrl> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/sosuisen/jfx-sss-fxml.git</connection> <developerConnection>scm:git:ssh://github.com:sosuisen/jfx-sss-fxml.git</developerConnection> <url>https://github.com/sosuisen/jfx-sss-fxml/tree/main</url> </scm> </project>