You'll also have to update the plugins. i.e. change the compiler plugin to
3.8.1 and any others that have a newer version available. Following
section of my POM.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>13</release>
<debug>false</debug>
<showDeprecation>true</showDeprecation>
</configuration>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.0</version> <!-- Use newer version of
ASM -->
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
On Mon, Aug 10, 2020 at 4:55 AM HRH <[email protected]> wrote:
> Chuck,
> Thanks for the prompt response. During the installation and initial setup,
> I changed the artifact versions per instructions given by Getting Started
> with JavaFX <https://openjfx.io/openjfx-docs/#introduction>
>
>
>