Update plugins

This commit is contained in:
Charles Gould 2020-06-03 01:22:43 -05:00
parent f2f0151dfb
commit 5c9f828916
2 changed files with 4 additions and 21 deletions

View File

@ -5,9 +5,7 @@ Prerequisites:
- Java 11+ installed - Java 11+ installed
- Maven 3+ installed - Maven 3+ installed
To start a game, run the command `mvn exec:java` To start a game, run the command `mvn javafx:run`
Or (experimental with modules), run the command `mvn javafx:compile`, then `mvn javafx:run`
Controls: Controls:

21
pom.xml
View File

@ -28,7 +28,7 @@
<plugins> <plugins>
<plugin> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version> <version>3.8.1</version>
<configuration> <configuration>
<release>11</release> <release>11</release>
</configuration> </configuration>
@ -36,7 +36,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId> <artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version> <version>3.0.0-M3</version>
<executions> <executions>
<execution> <execution>
<id>enforce-versions</id> <id>enforce-versions</id>
@ -59,22 +59,7 @@
<plugin> <plugin>
<groupId>org.openjfx</groupId> <groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId> <artifactId>javafx-maven-plugin</artifactId>
<version>0.0.1</version> <version>0.0.4</version>
<configuration>
<mainClass>com.charego.freecell.FreeCellApplication</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration> <configuration>
<mainClass>com.charego.freecell.FreeCellApplication</mainClass> <mainClass>com.charego.freecell.FreeCellApplication</mainClass>
</configuration> </configuration>