-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Adding Travis CI support.
- Loading branch information
1 parent
48270e2
commit 6692114
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
before_install: | ||
- wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip | ||
- unzip -qq apache-maven-3.3.9-bin.zip | ||
- export M2_HOME=$PWD/apache-maven-3.3.9 | ||
- export PATH=$M2_HOME/bin:$PATH | ||
language: java | ||
jdk: | ||
- oraclejdk8 | ||
install: /bin/true | ||
script: mvn clean install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
😆