I am trying to build a project of mine using the javadoc.skip parameter
mvn clean install -Dmaven.javadoc.skip=true -Dmaven.test.skip=true -Pbpfle
But I keep getting an error saying
Unknown life cycle phase ".javadoc.skip=true". You must specify a valid lifecycle phase or a goal in the format
<plugin-prefix>:<goal>
or<plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>
.
I am using Java (JDK) 8 with Maven 3.3.3
Is it an issue with Java because it used to work when I used to work with JDK 7 (and the same version of Maven)? I am running the command in Windows PowerShell.