switch to "main" as default branch name
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
ce33d37396
commit
e2c439379e
@ -8,7 +8,7 @@ steps:
|
|||||||
- mvn -B clean compile
|
- mvn -B clean compile
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- main
|
||||||
- develop
|
- develop
|
||||||
- feature/*
|
- feature/*
|
||||||
- fix/*
|
- fix/*
|
||||||
@ -35,5 +35,5 @@ steps:
|
|||||||
- mvn -B resources:testResources compiler:testCompile surefire:test
|
- mvn -B resources:testResources compiler:testCompile surefire:test
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- main
|
||||||
- release/*
|
- release/*
|
@ -23,7 +23,7 @@ jobs:
|
|||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- |
|
- |
|
||||||
if [[ "$TRAVIS_BRANCH" =~ ^master|(release\/.+)$ ]]; then
|
if [[ "$TRAVIS_BRANCH" =~ ^main|(release\/.+)$ ]]; then
|
||||||
wget -q https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip
|
wget -q https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip
|
||||||
wget -q -O - https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_SHA256SUMS | grep linux_amd64 | sha256sum -c
|
wget -q -O - https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_SHA256SUMS | grep linux_amd64 | sha256sum -c
|
||||||
unzip vault_${VAULT_VERSION}_linux_amd64.zip
|
unzip vault_${VAULT_VERSION}_linux_amd64.zip
|
||||||
@ -33,7 +33,7 @@ before_script:
|
|||||||
script:
|
script:
|
||||||
- mvn -B clean compile
|
- mvn -B clean compile
|
||||||
- |
|
- |
|
||||||
if [[ "$TRAVIS_BRANCH" =~ ^master|(release\/.+)$ ]]; then
|
if [[ "$TRAVIS_BRANCH" =~ ^main|(release\/.+)$ ]]; then
|
||||||
mvn -B resources:testResources compiler:testCompile surefire:test -P coverage
|
mvn -B resources:testResources compiler:testCompile surefire:test -P coverage
|
||||||
else
|
else
|
||||||
mvn -B resources:testResources compiler:testCompile surefire:test -P coverage -P offline-tests
|
mvn -B resources:testResources compiler:testCompile surefire:test -P coverage -P offline-tests
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
# Java Vault Connector
|
# Java Vault Connector
|
||||||
|
|
||||||
[](https://travis-ci.com/stklcode/jvaultconnector)
|
[](https://travis-ci.com/stklcode/jvaultconnector)
|
||||||
[](https://sonarcloud.io/dashboard?id=de.stklcode.jvault%3Ajvault-connector)
|
[](https://sonarcloud.io/dashboard?id=de.stklcode.jvault%3Ajvault-connector)
|
||||||
[](https://github.com/stklcode/jvaultconnector/blob/master/LICENSE.txt)
|
[](https://github.com/stklcode/jvaultconnector/blob/main/LICENSE.txt)
|
||||||
[](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.stklcode.jvault%22%20AND%20a%3A%22jvault-connector%22)
|
[](https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22de.stklcode.jvault%22%20AND%20a%3A%22jvault-connector%22)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Java Vault Connector is a connector library for [Vault](https://www.vaultproject.io) by [Hashicorp](https://www.hashicorp.com) written in Java. The connector allows simple usage of Vault's secret store in own applications.
|
Java Vault Connector is a connector library for [Vault](https://www.vaultproject.io) by [Hashicorp](https://www.hashicorp.com) written in Java. The connector allows simple usage of Vault's secret store in own applications.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user