formsfx-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.dlsc.formsfx</groupId>
<artifactId>formsfx-core</artifactId>
<version>11.6.0</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.formsfx</groupId>
<artifactId>formsfx-core</artifactId>
<packaging>jar</packaging>
<version>11.6.0</version>
<name>FormsFX Core</name>
<description>A framework for quickly creating form-based UIs.</description>
<url>https://github.com/dlemmermann/formsfx</url>
<parent>
<groupId>com.dlsc.formsfx</groupId>
<artifactId>formsfx</artifactId>
<version>11.6.0</version>
</parent>
<licenses>
<license>
<name>Apache 2.0</name>
</license>
</licenses>
<scm>
<url>https://github.com/dlemmermann/formsfx</url>
</scm>
<developers>
<developer>
<name>Dirk Lemmermann</name>
<url>http://www.dlsc.com</url>
<organization>DLSC Software & Consulting</organization>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<failOnError>false</failOnError>
<force>true</force>
<windowtitle>FormsFX API</windowtitle>
<additionalJOptions>
<additionalJOption>-J-Djavafx.javadoc=true</additionalJOption>
<additionalJOption>-html5</additionalJOption>
</additionalJOptions>
<docfilessubdirs>true</docfilessubdirs>
<tags>
<tag>
<name>defaultValue</name>
<placement>a</placement>
<head>Default Value:</head>
</tag>
<tag>
<name>apiNote</name>
<placement>a</placement>
<head>API Note:</head>
</tag>
<tag>
<name>implSpec</name>
<placement>a</placement>
<head>Implementation Requirements:</head>
</tag>
<tag>
<name>implNote</name>
<placement>a</placement>
<head>Implementation Note:</head>
</tag>
</tags>
<sourceFileExcludes>
<sourceFileExclude>**\/\module-info.java</sourceFileExclude>
</sourceFileExcludes>
</configuration>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.0</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>make-docs
</id> <!-- this is used for inheritance merges -->
<phase>package
</phase> <!-- bind to the packaging phase -->
<goals>
<goal>aggregate</goal>
</goals>
</execution>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.16</version>
<configuration>
<licenseName>apache20</licenseName>
<licenseResolver>${project.baseUri}/src/license
</licenseResolver>
<organizationName>DLSC Software & Consulting GmbH
</organizationName>
<inceptionYear>2019</inceptionYear>
<projectName>FormsFX</projectName>
<processStartTag>
========================LICENSE_START=================================
</processStartTag>
<processEndTag>
=========================LICENSE_END==================================
</processEndTag>
<verbose>false</verbose>
<includes>
<includes>**/*.java</includes>
</includes>
</configuration>
<executions>
<execution>
<id>first</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
<configuration>
<roots>
<root>src/main/java</root>
<root>src/test/java</root>
</roots>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>