seesaw/pom.xml

66 lines
No EOL
2.3 KiB
XML

<?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.okseby</groupId>
<artifactId>Seesaw</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<flatlafVersion>3.2.1</flatlafVersion>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.28</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>${flatlafVersion}</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>${flatlafVersion}</version>
<classifier>linux-x86_64</classifier>
<type>so</type>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>${flatlafVersion}</version>
<classifier>windows-x86_64</classifier>
<type>dll</type>
</dependency>
<!-- 32-bit (not needed if you bundle a 64-bit JRE with your application) -->
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>${flatlafVersion}</version>
<classifier>windows-x86</classifier>
<type>dll</type>
</dependency>
<!-- ARM 64-bit (not needed if your application does not support Windows on ARM) -->
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>${flatlafVersion}</version>
<classifier>windows-arm64</classifier>
<type>dll</type>
</dependency>
</dependencies>
</project>