From d3abd05198650116d1199566b3474e6ddec8222f Mon Sep 17 00:00:00 2001 From: Benjamin Marwell Date: Sun, 19 May 2019 13:51:28 +0200 Subject: [PATCH] Fix checker framework skip arguments. --- .travis.yml | 6 ++++-- pom.xml | 4 +--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 68f2201..3c82016 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/pom.xml b/pom.xml index 994c41f..7c0a16b 100644 --- a/pom.xml +++ b/pom.xml @@ -288,9 +288,7 @@ interpreted from each module directory --> -Astubs=${checker.stubs.dir} - -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$