Skip to content

aaron-santos/DKS-exercise3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PRG2 - Exercise 2 Example Solution

This repository is an example solution for Exercise 2 in PRG2 (2023).

Start the application

Start the application by either running the main method in the FhmdbApplication class or by running mvn clean javafx:run in Maven.

Note: If you run the application with mvn clean javafx:run you may face a incompatible version error (java.lang.module.InvalidModuleDescriptorException: Unsupported major.minor version XXX). If so, check the version of your system Java installation (Environment Variables). Maven uses the default system Java installation. If you have multiple Java installations, you can set the Java version for Maven by adding the following to your pom.xml:

<build>
  ...
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.10.1</version>
            <configuration>
                <source>17</source> // change to your system version here
                <target>17</target> // and here
            </configuration>
        </plugin>
        ...
    </plugins>
</build>

Run the tests

Run automated tests by running mvn clean test command in Maven.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published