Issue #3378: Added NonDex to pom.xml, .travis.yml, and .gitignore (#3393)

This commit is contained in:
Ben Lambeth 2016-08-04 23:25:11 -05:00 committed by Roman Ivanov
parent 26dd1b63a2
commit d7ca24ea03
3 changed files with 13 additions and 0 deletions

4
.gitignore vendored
View File

@ -31,3 +31,7 @@ replay_pid*
# Apple MAC OSX hidden file
.DS_Store
# NonDex files
.nondex
.nondex/*

View File

@ -19,6 +19,10 @@ matrix:
- jdk: oraclejdk8
env: DESC="tests and deploy" CMD="mvn clean integration-test failsafe:verify" COVERAGE_CMD="" DEPLOY="true"
# NonDex (oraclejdk8)
- jdk: oraclejdk8
env: DESC="NonDex" CMD="mvn clean nondex:nondex" COVERAGE_CMD="" DEPLOY="false"
# checkstyle (oraclejdk8)
- jdk: oraclejdk8
env:

View File

@ -993,6 +993,11 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>edu.illinois</groupId>
<artifactId>nondex-maven-plugin</artifactId>
<version>1.0.1</version>
</plugin>
</plugins>
</build>