My maven project intentionally only needs src/test/java
and src/test/resources
. After removing src/main/*
folders, the expected w
Both solutions suppressed the warning message programmatically.
org.apache.maven.plugins
maven-jar-plugin
3.1.0
src
main
Since the above essentially created an empty JAR (and I did not really want to include test classes and test resources), I opted to "skip" the JAR creation instead.
What is the best way to avoid maven-jar?
org.apache.maven.plugins
maven-jar-plugin
3.1.0
default-jar
none