Skip to content

Commit 93687ed

Browse files
authored
Merge pull request #84 from cyberark/fix-deployment-dir
Fix volume path for release deployment
2 parents 8b7ffae + 54a15c7 commit 93687ed

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

bin/deploy-release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export TAG=${TAG_NAME//"v"}
1515
docker run --rm \
1616
-e OSSRH_USERNAME \
1717
-e OSSRH_PASSWORD \
18-
-v "$PWD:/cyberark/conjur-sdk-java" \
18+
-v "$PWD/client:/cyberark/conjur-sdk-java" \
1919
-v "$GPG_PASSWORD:/gpg_password" \
2020
-v "$GPG_PRIVATE_KEY:/gpg_key" \
2121
-w /cyberark/conjur-sdk-java maven:3-jdk-8 \

client/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,9 @@
183183
<plugin>
184184
<groupId>org.owasp</groupId>
185185
<artifactId>dependency-check-maven</artifactId>
186-
<version>7.1.1</version>
186+
<version>7.4.4</version>
187187
<configuration>
188+
<cveDownloadWait>20000</cveDownloadWait>
188189
<failBuildOnCVSS>7</failBuildOnCVSS>
189190
</configuration>
190191
<executions>

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ services:
7777

7878
networks:
7979
default:
80-
external:
81-
name: conjur-sdk-java
80+
external: true
81+
name: conjur-sdk-java

templates/libraries/okhttp-gson/pom.mustache

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,9 @@
189189
<plugin>
190190
<groupId>org.owasp</groupId>
191191
<artifactId>dependency-check-maven</artifactId>
192-
<version>7.1.1</version>
192+
<version>7.4.4</version>
193193
<configuration>
194+
<cveDownloadWait>20000</cveDownloadWait>
194195
<failBuildOnCVSS>7</failBuildOnCVSS>
195196
</configuration>
196197
<executions>

0 commit comments

Comments
 (0)