Skip to content

Commit cd5c75b

Browse files
committed
Add Maven JavaFX build configuration for installer
1 parent 6aa3735 commit cd5c75b

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

installer/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>us.house</groupId>
5+
<artifactId>us-house-installer</artifactId>
6+
<version>1.0.0</version>
7+
<name>US House JavaFX Installer</name>
8+
<properties>
9+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10+
<maven.compiler.release>21</maven.compiler.release>
11+
<javafx.version>21.0.8</javafx.version>
12+
</properties>
13+
<dependencies>
14+
<dependency><groupId>org.openjfx</groupId><artifactId>javafx-controls</artifactId><version>${javafx.version}</version></dependency>
15+
</dependencies>
16+
<build>
17+
<plugins>
18+
<plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>3.14.0</version></plugin>
19+
<plugin><groupId>org.openjfx</groupId><artifactId>javafx-maven-plugin</artifactId><version>0.0.8</version><configuration><mainClass>us.house.installer.USHouseInstaller</mainClass></configuration></plugin>
20+
</plugins>
21+
</build>
22+
</project>

0 commit comments

Comments
 (0)