2024-05-18 17:13:29 +01: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>com.shr4pnel.minesweeper</groupId>
|
|
|
|
<artifactId>libremines</artifactId>
|
2024-07-24 21:00:08 +01:00
|
|
|
<version>1.0</version>
|
2024-05-18 17:13:29 +01:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
2024-07-24 21:00:08 +01:00
|
|
|
<version>21.0.4</version>
|
2024-05-18 17:13:29 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-fxml</artifactId>
|
2024-07-24 21:00:08 +01:00
|
|
|
<version>21.0.4</version>
|
2024-05-18 17:13:29 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
|
|
<version>0.0.8</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>libremines/com.shr4pnel.minesweeper.Main</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2024-05-19 15:25:40 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.13.0</version>
|
|
|
|
</plugin>
|
2024-05-19 16:34:03 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.gluonhq</groupId>
|
|
|
|
<artifactId>gluonfx-maven-plugin</artifactId>
|
|
|
|
<version>1.0.22</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>com.shr4pnel.minesweeper.Main</mainClass>
|
2024-05-22 00:14:48 +01:00
|
|
|
<reflectionList>
|
|
|
|
com.shr4pnel.minesweeper.Controller
|
|
|
|
</reflectionList>
|
2024-05-19 16:34:03 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-wrapper-plugin</artifactId>
|
|
|
|
<version>3.3.1</version>
|
|
|
|
</plugin>
|
2024-05-18 17:13:29 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2024-05-19 15:25:40 +01:00
|
|
|
</project>
|