Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ Java Sample
================

Sample Java app using Maven.
[![Build Status](https://apibeta.shippable.com/projects/54732f17c2b9a03657602697/badge?branchName=master)](https://appbeta.shippable.com/projects/54732f17c2b9a03657602697/builds/latest)
3 changes: 3 additions & 0 deletions shippable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ jdk:
after_success:
- mvn clean cobertura:cobertura
- mvn test
- echo "Builds passed"

before_script: mvn --version

after_failure:
- echo "builds failed"

notifications:
email: false
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/TestApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public void testInsertAndGetData() {
App app = new App();
result = app.getData();
} finally {
assertEquals("Hope this works!", result);
assertEquals("Hope this works !", result);
}
}
}
Expand Down