Skip to content

Commit f86cdf8

Browse files
committed
release: 2.6.2
1 parent a2d33eb commit f86cdf8

File tree

98 files changed

+3081
-3005
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+3081
-3005
lines changed

JenkinsfileSCM

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,19 @@ pipeline {
6565
}
6666
stage('tests') {
6767
steps {
68-
configFileProvider([configFile(fileId: 'maven-settings-rsb', variable: 'MAVEN_SETTINGS_RSB')]) {
69-
sh "mvn -s $MAVEN_SETTINGS_RSB clean deploy -Ddependency-check.skip=true"
68+
configFileProvider([configFile(fileId: 'maven-settings-rsb', variable: 'MAVEN_SETTINGS_RSB')]) {
69+
script {
70+
echo "working on branch ${env.BRANCH_NAME}"
71+
if (env.BRANCH_NAME.startsWith('release/') || env.BRANCH_NAME.startsWith('PR-')) {
72+
sh "mvn -s $MAVEN_SETTINGS_RSB clean install -Ddependency-check.skip=true"
73+
} else {
74+
sh "mvn -s $MAVEN_SETTINGS_RSB clean deploy -Ddependency-check.skip=true"
75+
}
7076
}
77+
}
78+
}
79+
post {
80+
always {
7181
publishHTML([
7282
reportDir: 'rdepot-app/target/site/', reportFiles: 'failsafe-report.html',
7383
reportName: 'Integration Test / App Test Report',
@@ -88,6 +98,7 @@ pipeline {
8898
reportDir: 'target/', reportFiles: 'dependency-check-report.html',
8999
reportName: 'OWASP Dependency Analysis Report',
90100
allowMissing: true, alwaysLinkToLastBuild: true, keepAll: true])
101+
}
91102
}
92103
}
93104
stage('build images') {

demo/docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
networks:
2929
- oa-rdepot
3030
backend:
31-
image: openanalytics/rdepot-app:2.6.1
31+
image: openanalytics/rdepot-app:2.6.2
3232
restart: unless-stopped
3333
hostname: oa-rdepot-backend
3434
container_name: oa-rdepot-backend
@@ -52,7 +52,7 @@ services:
5252
timeout: 10s
5353
retries: 10
5454
repo:
55-
image: openanalytics/rdepot-repo:2.6.1
55+
image: openanalytics/rdepot-repo:2.6.2
5656
restart: unless-stopped
5757
hostname: oa-rdepot-repo
5858
container_name: oa-rdepot-repo
@@ -63,7 +63,7 @@ services:
6363
- oa-rdepot
6464
frontend:
6565
container_name: oa-rdepot-frontend
66-
image: openanalytics/rdepot-client:2.6.1
66+
image: openanalytics/rdepot-client:2.6.2
6767
restart: unless-stopped
6868
networks:
6969
- oa-rdepot

docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
build:
3333
dockerfile: docker/build/app-standalone/Dockerfile
3434
cache_from:
35-
- openanalytics/rdepot-app:2.6.1
35+
- openanalytics/rdepot-app:2.6.2
3636
restart: unless-stopped
3737
hostname: oa-rdepot-backend
3838
container_name: oa-rdepot-backend
@@ -59,7 +59,7 @@ services:
5959
build:
6060
dockerfile: docker/build/repo-standalone/Dockerfile
6161
cache_from:
62-
- openanalytics/rdepot-repo:2.6.1
62+
- openanalytics/rdepot-repo:2.6.2
6363
restart: unless-stopped
6464
hostname: oa-rdepot-repo
6565
container_name: oa-rdepot-repo
@@ -70,7 +70,7 @@ services:
7070
- oa-rdepot
7171
frontend:
7272
container_name: oa-rdepot-frontend
73-
image: openanalytics/rdepot-client:2.6.1
73+
image: openanalytics/rdepot-client:2.6.2
7474
restart: unless-stopped
7575
networks:
7676
- oa-rdepot
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM registry.openanalytics.eu/openanalytics/rdepot-app-it:2.6.1
1+
FROM registry.openanalytics.eu/openanalytics/rdepot-app-it:2.6.2
22

3-
COPY ./rdepot-app/target/rdepot-app-2.6.1.war /opt/rdepot/rdepot.war
3+
COPY ./rdepot-app/target/rdepot-app-2.6.2.war /opt/rdepot/rdepot.war
44
COPY ./docker/build/app-standalone/application.yml /opt/rdepot/application.yml
55

66
ENTRYPOINT exec java $JAVA_OPTS -jar /opt/rdepot/rdepot.war --spring.config.location=classpath:/application.yml --spring.config.additional-location=file:/opt/rdepot/application.yml
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.openanalytics.eu/openanalytics/rdepot-repo-it:2.6.1
1+
FROM registry.openanalytics.eu/openanalytics/rdepot-repo-it:2.6.2
22

3-
COPY ./rdepot-repo/target/rdepot-repo-2.6.1.jar /opt/repo/rdepot-repo.jar
3+
COPY ./rdepot-repo/target/rdepot-repo-2.6.2.jar /opt/repo/rdepot-repo.jar
44
COPY ./docker/build/repo-standalone/application.yml /opt/repo/application.yml

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>eu.openanalytics</groupId>
88
<artifactId>rdepot</artifactId>
9-
<version>2.6.1</version>
9+
<version>2.6.2</version>
1010
<packaging>pom</packaging>
1111
<name>RDepot</name>
1212
<description>Enterprise Management of Package Repositories</description>

0 commit comments

Comments
 (0)