Skip to content

Commit

Permalink
Merge pull request #29 from Group-5/build/javafx
Browse files Browse the repository at this point in the history
Build: added javafx dependencies
  • Loading branch information
emilfa authored Feb 24, 2026
2 parents 85cd341 + f9acc3d commit ea3b80d
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.release>25</maven.compiler.release>
</properties>

<dependencyManagement>
Expand All @@ -40,6 +40,11 @@
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>25.0.1</version>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -84,6 +89,14 @@
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.6.1</version>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
<configuration>
<mainClass>edu.group5.app.App</mainClass>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down

0 comments on commit ea3b80d

Please sign in to comment.