Skip to content
Snippets Groups Projects
Commit 775c27f2 authored by Christopher Bohn's avatar Christopher Bohn :thinking:
Browse files

updated pom.xml to work with 2021-22 VM

parent 04d60140
No related branches found
No related tags found
No related merge requests found
...@@ -18,11 +18,37 @@ ...@@ -18,11 +18,37 @@
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version> <version>3.8.1</version>
<configuration> <configuration>
<source>8</source> <source>11</source>
<target>8</target> <target>11</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
<configuration>
<mainClass>edu.unl.cse.soft161.event_driven.PurchasingApp</mainClass>
</configuration>
<executions>
<execution>
<id>run</id>
<configuration>
<mainClass>edu.unl.cse.soft161.event_driven.PurchasingApp</mainClass>
</configuration>
</execution>
<execution>
<id>debug</id>
<configuration>
<mainClass>edu.unl.cse.soft161.event_driven.PurchasingApp</mainClass>
<options>
<option>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:8000</option>
</options>
</configuration>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment