How do i skip the license check when running the maven install?
I found this helpful
$ mvn license:help -Ddetail | fgrep skip
which gave me
-Dlicense.skipDownloadLicenses
you don't need to add =true
because just defining it is enough.
In my case, it worked with just -Dlicense.skip
, without =true
.
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0</version>
</plugin>
Try skipping AddThirdParty mojo with -Dlicense.skipAddThirdParty=true
.