Skip to content

Commit 471305d

Browse files
Fix small issue (#225)
1 parent 9f218da commit 471305d

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

buildSrc/src/main/groovy/io.pivotal.cfenv.java-conventions.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ publishing {
146146
developer {
147147
id = "pivotal-david-osullivan"
148148
name = "David O'Sullivan"
149+
149150
}
150151
}
151152
issueManagement {

ci/scripts/promote.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
#!/bin/bash
22
set -euo pipefail
33

4-
# shellcheck source=scripts/common.sh
5-
source $(dirname $0)/common.sh
6-
74
version=$( cat artifactory-repo/build-info.json | jq -r '.buildInfo.modules[0].id' | sed 's/.*:.*:\(.*\)/\1/' )
85
export BUILD_INFO_LOCATION=$(pwd)/artifactory-repo/build-info.json
96

ci/tasks/promote.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
platform: linux
33
image_resource:
4-
type: dockerhub-image
4+
type: registry-image
55
source:
6-
repository: springio/concourse-release-scripts
6+
repository: harbor-repo.vmware.com/dockerhub-proxy-cache/springio/concourse-release-scripts
77
tag: 0.3.4
88
inputs:
99
- name: git-repo

ci/tasks/sync-to-maven-central.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ platform: linux
33
image_resource:
44
type: registry-image
55
source:
6-
repository: ((corporate-harbor-registry))/((docker-hub-organization))/java-cfenv-ci
7-
username: ((corporate-harbor-robot-account.username))
8-
password: ((corporate-harbor-robot-account.password))
9-
tag: latest
6+
repository: harbor-repo.vmware.com/dockerhub-proxy-cache/springio/concourse-release-scripts
7+
tag: 0.3.4
108
inputs:
119
- name: git-repo
1210
- name: artifactory-repo

java-cfenv-all/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ buildscript {
77
}
88
}
99

10+
plugins {
11+
id 'io.pivotal.cfenv.java-conventions'
12+
}
13+
1014
apply plugin: 'com.github.johnrengelman.shadow'
1115
apply plugin: 'java-library'
12-
apply plugin: 'maven-publish'
1316

1417
description = 'Java CF Env Boot All, contains all java-cfenv modules in a convenient uberjar'
1518

@@ -51,4 +54,5 @@ publishing {
5154

5255
assemble.dependsOn shadowJar
5356
build.dependsOn shadowJar
54-
publishShadowPublicationToMavenRepository.dependsOn jar
57+
publishShadowPublicationToMavenRepository.onlyIf { false }
58+
publishShadowPublicationToMaven2Repository.onlyIf { false }

0 commit comments

Comments
 (0)