Posts in 2016

  • Maven Dependency Updates

    Friday, March 04, 2016 in Build

    Use the following command to find any updates on dependencies mvn versions:display-dependency-updates Sample Output: $ mvn versions:display-dependency-updates [INFO] Scanning for projects... [INFO] [INFO] --------------------< …

    Read more

  • Maven Skip Test

    Thursday, January 21, 2016 in Build

    Any of the following option can be used to skip the tests during build process. Option 1: -DskipTests Option 2: -DskipTests=true Option 3: -Dmaven.test.skip=true Option 4: -Darguments="-DskipTests"

    Read more