Or -Drat.ignoreErrors
Christopher wrote:
I thought I nuked that file... I'll take a look at that. In the
meantime, you can comment out the mrit module in the root pom.xml.
--
Christopher L Tubbs II
http://gravatar.com/ctubbsii
On Tue, Jun 16, 2015 at 2:18 PM, Leon Xu<[email protected]> wrote:
Thanks Josh. That help skip the findbugs.
I am then running into another issue which failed the build:
*Failed to execute goal org.apache.rat:apache-rat-plugin:0.11:check
(check-licenses) on project accumulo-mrit: Too many files with unapproved
license: 1 See RAT report in:
/Users/leoxu/Projects/accumulo/mrit/target/rat.txt*
Taking a look at the RAT report, it shows:
*JavaDocs are generated and so license header is optional
Generated files do not required license headers
1 Unknown Licenses
*******************************
Unapproved licenses:
/Users/leoxu/Projects/accumulo/mrit/dependency-reduced-pom.xml
********************************
*......*
The file 'dependency-reduced-pom.xml' is auto-generated.
Any idea on this issue?
Thanks
Leon
On Tue, Jun 16, 2015 at 8:10 AM, Josh Elser<[email protected]> wrote:
They're bugs that were committed by someone and need to be fixed.
If you don't care about them and just want to build, you can provide
`-Dfindbugs.skip` on the command line when you build.
Leon Xu wrote:
Hi Accumulo devs,
I am checking out the accumulo master branch and try to build it by
running:
*mvn package -P assemble -DskipTests*
Just want to give a try so I skip tests to save time.
But I am getting the following error when it is building the *Testing*
Module.
[INFO] BugInstance size is 2
[INFO] Error size is 0
[INFO] Total bugs: 2
[INFO] Exceptional return value of java.io.File.mkdirs() ignored in
org.apache
.accumulo.test.UserCompactionStrategyIT.testPerTableClasspath() [
org.apache.ac
cumulo.test.UserCompactionStrategyIT] At
UserCompactionStrategyIT.java:[line 1
36]
[INFO] Usage of GetResource in
org.apache.accumulo.test.proxy.SimpleProxyBase.
testCompactionStrategy() may be unsafe if class is extended
[org.apache.accumu
lo.test.proxy.SimpleProxyBase] At SimpleProxyBase.java:[line 2251]
[INFO]
Can anyone shed some lights on it?
Leon