Merge branch 'master' into native-support-purge

This commit is contained in:
leonardo-dgs 2022-08-07 17:03:40 +02:00 committed by GitHub
commit 5032b21d9f
4 changed files with 12 additions and 2 deletions

2
.coveralls Normal file
View File

@ -0,0 +1,2 @@
service_name: travis-pro
repo_token: ${env.COVERALLS_REPO_TOKEN}

View File

@ -4,5 +4,5 @@ then
echo 'Travis can only publish docs for release builds.'
return 0
fi
mvn test
mvn test -DrepoToken=$COVERALLS_REPO_TOKEN
exit $?

View File

@ -1,4 +1,4 @@
# Vault - Abstraction Library for Bukkit - [![](https://travis-ci.org/MilkBowl/Vault.svg?branch=master)](https://travis-ci.org/MilkBowl/Vault)
# Vault - Abstraction Library for Bukkit - [![Build Status](https://app.travis-ci.com/MilkBowl/Vault.svg?branch=master)](https://app.travis-ci.com/MilkBowl/Vault)
## For Developers:
Please see the [VaultAPI](https://www.github.com/MilkBowl/VaultAPI) page for

View File

@ -169,6 +169,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<configuration>
<repoToken>${env.COVERALLS_REPO_TOKEN}</repoToken>
</configuration>
</plugin>
</plugins>
</build>
</project>