Initial commit pt2
This commit is contained in:
parent
20a37b107d
commit
a478757a18
9 changed files with 311 additions and 0 deletions
66
pom.xml
Normal file
66
pom.xml
Normal file
|
@ -0,0 +1,66 @@
|
|||
<?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>20</maven.compiler.source>
|
||||
<maven.compiler.target>20</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>
|
Loading…
Add table
Add a link
Reference in a new issue