Deploy spring-boot-test-support so it's available downstream
Concourse builds spring-boot-tests separately from spring-boot-project and relies on modules from the latter being available in the distribution repository when building the former. This commit enables the deployment of spring-boot-test-support from spring-boot-project so that it is added to the distribution repository and is therefore available when building spring-boot-tests. It is then excluded when putting to the Artifactory resource as we do not want it to be published. See gh-15471
This commit is contained in:
parent
61d04db0d7
commit
ddabfe3fcc
|
|
@ -191,6 +191,7 @@ jobs:
|
||||||
build_number: "${BUILD_PIPELINE_NAME}-${BUILD_JOB_NAME}-${BUILD_NAME}"
|
build_number: "${BUILD_PIPELINE_NAME}-${BUILD_JOB_NAME}-${BUILD_NAME}"
|
||||||
disable_checksum_uploads: true
|
disable_checksum_uploads: true
|
||||||
exclude:
|
exclude:
|
||||||
|
- "**/spring-boot-test-support/**"
|
||||||
- "**/*.effective-pom"
|
- "**/*.effective-pom"
|
||||||
artifact_set:
|
artifact_set:
|
||||||
- include:
|
- include:
|
||||||
|
|
|
||||||
|
|
@ -13,17 +13,6 @@
|
||||||
<properties>
|
<properties>
|
||||||
<main.basedir>${basedir}/../../..</main.basedir>
|
<main.basedir>${basedir}/../../..</main.basedir>
|
||||||
</properties>
|
</properties>
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- Compile -->
|
<!-- Compile -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue