2020-11-06 23:11:29 +00: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>nl.andrewlalis</groupId>
|
|
|
|
<artifactId>BlockBookBinder</artifactId>
|
2023-07-15 02:50:57 +00:00
|
|
|
<version>1.3.1</version>
|
2020-11-06 23:11:29 +00:00
|
|
|
|
|
|
|
<properties>
|
2023-07-08 15:50:32 +00:00
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2020-11-06 23:11:29 +00:00
|
|
|
</properties>
|
|
|
|
|
2020-11-07 23:25:59 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>nl.andrewlalis.blockbookbinder.BlockBookBinder</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-11-06 23:11:29 +00:00
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2023-07-08 15:50:32 +00:00
|
|
|
<version>1.18.28</version>
|
2020-11-06 23:11:29 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-11-07 14:05:16 +00:00
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.1stleg/jnativehook -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.1stleg</groupId>
|
|
|
|
<artifactId>jnativehook</artifactId>
|
|
|
|
<version>2.1.0</version>
|
|
|
|
</dependency>
|
2021-03-09 23:42:22 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.formdev</groupId>
|
|
|
|
<artifactId>flatlaf</artifactId>
|
2023-07-08 15:50:32 +00:00
|
|
|
<version>3.1.1</version>
|
2021-03-09 23:42:22 +00:00
|
|
|
</dependency>
|
2021-03-13 13:00:18 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-model</artifactId>
|
2023-07-08 15:50:32 +00:00
|
|
|
<version>3.9.3</version>
|
2021-03-13 13:00:18 +00:00
|
|
|
</dependency>
|
2020-11-06 23:11:29 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|