forked from NanoHttpd/nanohttpd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f71655
commit 0dbcfa4
Showing
2 changed files
with
26 additions
and
2 deletions.
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 |
---|---|---|
|
@@ -5,7 +5,10 @@ jdk: | |
install: | ||
- mvn install -DskipTests=true | ||
|
||
script: mvn test | ||
script: | ||
- mvn test ; export MAVEN_RESULT=$? | ||
- if [ "$MAVEN_RESULT" -ne 0 ]; then exit 1; fi | ||
- mvn clean deploy --quiet --settings settings.xml ; export MAVEN_RESULT=$? | ||
|
||
after_success: | ||
- mvn clean test jacoco:report coveralls:report | ||
|
@@ -14,4 +17,10 @@ after_success: | |
notifications: | ||
email: | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
|
||
env: | ||
global: | ||
- secure: "OtD0z3y4/OjSzg8irVD8v/u0TElcw8AiCCXb7a0UQEnTpGxcf5DOdkvHv0hF4xjHKFtlMMHxevW+a4C4NuFR8it8ZJ/i2m24reB28JicDcRQY9nwV/BR/T08CRG9KDz5EuTHgfPJDF0y+5MiVNwJVhHFviBWKuXyIuYouJ5IHgc=" | ||
- secure: "tgTVycNLwYDM3U0EVK1TkffylQHfZihvSDC9QoZEo+wz9aBBLoAtUJP7DWltRQFOkfTeGltGHEfGM2/qkIG6Wz+hNFG/fveHqyI01JWXc64d7yBm7agaCP5uTtt2wjaZ7ZK5Mps5QoufblYu+j9gb2v31t9IdsJ9PUs0+wgE/WU=" | ||
|
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,15 @@ | ||
<settings> | ||
<proxies> | ||
</proxies> | ||
<servers> | ||
<server> | ||
<id>sonatype-nexus-staging</id> | ||
<username>${env.CI_DEPLOY_USERNAME}</username> | ||
<password>${env.CI_DEPLOY_PASSWORD}</password> | ||
</server> | ||
</servers> | ||
<mirrors> | ||
</mirrors> | ||
<profiles> | ||
</profiles> | ||
</settings> |