How do I launch facebook for my maven project?

As mentioned in the documentation, I tried to run

infer -- mvn compile 

in my maven project. He complains that

 [ERROR] Javac compilation error with: ['javac', '-g', '-d', ... <list of all jars> ...'-g', '-nowarn', '-target', '1.8', '-source', '1.8', '-encoding', 'UTF-8'] javac: no source files Usage: javac <options> <source files> 

Did I miss something?

+5
source share
1 answer

I work for me like this:

 infer -- mvn package -Pdev 

or

 infer -- mvn -Dtest=DatabaseExportXlsTest test 
+3
source

All Articles