Skip to content

Commit

Permalink
Fix checker framework skip arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarwell committed May 19, 2019
1 parent c7b4656 commit d3abd05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ stages:
jobs:
include:
- stage: validations
name: "Code validations (format, binary compatibilty, whitesource, etc.)"
name: "Code validations (checkstyle)"
script: ./mvnw -B clean install -DskipTests=true -Pcheckstyle
- script: ./mvnw -B clean install -DskipTests=true -Pchecker
- stage: validations
name: "Checker framework (Nullness checker)."
script: ./mvnw -B clean install -DskipTests=true -Pchecker

cache:
directories:
Expand Down
4 changes: 1 addition & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,7 @@
interpreted from each module directory -->
<arg>-Astubs=${checker.stubs.dir}</arg>
<arg>
-AskipDefs=^de\.bmarwell\.zchunk\..*\.ReflectionUtil$|io\.github\.zchunk\..*\.ReflectionUtil$
|^de\.bmarwell\.zchunk\..*\.ChecksumUtil$|^io\.github\.zchunk\..*\.ChecksumUtil$
|^.*Test$
-AskipDefs=^io\.github\.zchunk\..*\.ReflectionUtil$|^io\.github\.zchunk\..*\.ChecksumUtil$|^.*Test$
</arg>
</compilerArgs>
</configuration>
Expand Down

0 comments on commit d3abd05

Please # to comment.