2022-07-21 04:58:01 -04:00
|
|
|
<?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.mkpaz</groupId>
|
|
|
|
<artifactId>atlantafx-parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2023-05-31 12:36:01 -04:00
|
|
|
<version>2.0.0</version>
|
2022-07-21 04:58:01 -04:00
|
|
|
|
|
|
|
<name>AtlantaFX</name>
|
|
|
|
<description>JavaFX CSS theme collection plus additional controls</description>
|
|
|
|
<url>https://github.com/mkpaz/atlantafx</url>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>https://raw.githubusercontent.com/mkpaz/atlantafx/master/LICENSE</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>mkpaz</id>
|
|
|
|
<name>mkpaz</name>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<developerConnection>scm:git:https://github.com/mkpaz/atlantafx.git</developerConnection>
|
|
|
|
<connection>${project.scm.developerConnection}</connection>
|
|
|
|
<url>${project.url}</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>base</module>
|
|
|
|
<module>sampler</module>
|
|
|
|
<module>styles</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
|
|
|
|
|
|
<java.version>17</java.version>
|
2023-05-20 07:43:47 -04:00
|
|
|
<openjfx.version>20</openjfx.version>
|
2022-08-31 05:26:05 -04:00
|
|
|
<sass.version>1.54.4</sass.version>
|
2022-07-21 04:58:01 -04:00
|
|
|
|
|
|
|
<app.name>AtlantaFX</app.name>
|
2022-07-24 11:38:56 -04:00
|
|
|
<!-- DO NOT use ${project.version} as jpackage will fail on
|
|
|
|
Windows when using '-SNAPSHOT' suffix -->
|
2023-05-31 12:36:01 -04:00
|
|
|
<app.version>2.0.0</app.version>
|
2022-07-21 04:58:01 -04:00
|
|
|
|
|
|
|
<lib.commons-lang.version>3.12.0</lib.commons-lang.version>
|
|
|
|
<lib.cssfx.version>11.5.1</lib.cssfx.version>
|
2022-08-30 14:42:21 -04:00
|
|
|
<lib.ikonli.version>12.3.1</lib.ikonli.version>
|
2022-07-21 04:58:01 -04:00
|
|
|
<lib.datafaker.version>1.3.0</lib.datafaker.version>
|
2023-02-09 05:23:56 -05:00
|
|
|
<lib.jetbrains-annotations.version>23.0.0</lib.jetbrains-annotations.version>
|
2022-07-21 04:58:01 -04:00
|
|
|
<test.assertj.version>3.21.0</test.assertj.version>
|
|
|
|
<test.junit.version>5.8.1</test.junit.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>atlantafx-styles</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>atlantafx-base</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
|
|
|
<version>${openjfx.version}</version>
|
|
|
|
</dependency>
|
2023-05-02 06:29:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
|
|
|
<version>${openjfx.version}</version>
|
|
|
|
</dependency>
|
2022-07-21 04:58:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-swing</artifactId>
|
|
|
|
<version>${openjfx.version}</version>
|
|
|
|
</dependency>
|
2022-07-26 14:45:58 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-media</artifactId>
|
|
|
|
<version>${openjfx.version}</version>
|
|
|
|
</dependency>
|
2022-07-21 04:58:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-web</artifactId>
|
|
|
|
<version>${openjfx.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kordamp.ikonli</groupId>
|
|
|
|
<artifactId>ikonli-javafx</artifactId>
|
|
|
|
<version>${lib.ikonli.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kordamp.ikonli</groupId>
|
|
|
|
<artifactId>ikonli-feather-pack</artifactId>
|
|
|
|
<version>${lib.ikonli.version}</version>
|
|
|
|
</dependency>
|
2022-07-26 14:45:58 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.kordamp.ikonli</groupId>
|
|
|
|
<artifactId>ikonli-material2-pack</artifactId>
|
|
|
|
<version>${lib.ikonli.version}</version>
|
|
|
|
</dependency>
|
2023-02-09 05:23:56 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>${lib.jetbrains-annotations.version}</version>
|
|
|
|
</dependency>
|
2022-07-21 04:58:01 -04:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.brouillard.oss</groupId>
|
|
|
|
<artifactId>cssfx</artifactId>
|
|
|
|
<version>${lib.cssfx.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.datafaker</groupId>
|
|
|
|
<artifactId>datafaker</artifactId>
|
|
|
|
<version>${lib.datafaker.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${test.assertj.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${test.junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${test.junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>3.3.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2023-02-09 08:49:03 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>checkstyle.xml</configLocation>
|
|
|
|
<consoleOutput>true</consoleOutput>
|
2023-02-10 06:41:32 -05:00
|
|
|
<failsOnError>false</failsOnError>
|
|
|
|
<linkXRef>false</linkXRef>
|
2023-02-09 08:49:03 -05:00
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
|
|
|
<version>10.6.0</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2022-07-21 04:58:01 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2022-08-02 04:46:54 -04:00
|
|
|
<groupId>us.hebi.sass</groupId>
|
|
|
|
<artifactId>sass-cli-maven-plugin</artifactId>
|
|
|
|
<version>1.0.1</version>
|
2022-08-31 05:26:05 -04:00
|
|
|
<configuration>
|
|
|
|
<sassVersion>1.54.5</sassVersion>
|
|
|
|
</configuration>
|
2022-07-21 04:58:01 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.4.0</version>
|
2023-02-10 07:28:16 -05:00
|
|
|
<configuration>
|
|
|
|
<doclint>none</doclint>
|
|
|
|
</configuration>
|
2022-07-21 04:58:01 -04:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>3.0.0-M1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
|
|
|
<version>3.1.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
|
|
<version>3.9.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.0.0-M5</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>io.github.wiverson</groupId>
|
|
|
|
<artifactId>jtoolprovider-plugin</artifactId>
|
|
|
|
<version>1.0.34</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.moditect</groupId>
|
|
|
|
<artifactId>moditect-maven-plugin</artifactId>
|
|
|
|
<version>1.0.0.RC1</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
|
|
<version>0.0.6</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>linux-active</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>unix</family>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<platform>linux</platform>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>windows-active</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>windows</family>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<platform>win</platform>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
2022-07-24 11:38:56 -04:00
|
|
|
<id>release</id>
|
2022-07-21 04:58:01 -04:00
|
|
|
<activation>
|
|
|
|
<activeByDefault>false</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- package project sources -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-source</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!-- package project javadoc -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!-- sign deployed artifacts -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2023-02-09 05:33:40 -05:00
|
|
|
<profile>
|
|
|
|
<id>lint</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
<compilerArgs>
|
|
|
|
<arg>-XDcompilePolicy=simple</arg>
|
|
|
|
<arg>
|
|
|
|
-Xplugin:ErrorProne \
|
|
|
|
-Xep:NullAway:ERROR \
|
|
|
|
-XepOpt:NullAway:AnnotatedPackages=corf \
|
|
|
|
-XepExcludedPaths:.*/src/test/java/.*
|
|
|
|
-XepAllErrorsAsWarnings
|
|
|
|
</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
<path>
|
|
|
|
<groupId>com.google.errorprone</groupId>
|
|
|
|
<artifactId>error_prone_core</artifactId>
|
|
|
|
<version>2.16</version>
|
|
|
|
</path>
|
|
|
|
<path>
|
|
|
|
<groupId>com.uber.nullaway</groupId>
|
|
|
|
<artifactId>nullaway</artifactId>
|
|
|
|
<version>0.10.4</version>
|
|
|
|
</path>
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2022-07-21 04:58:01 -04:00
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|