Prohibit more preview releases
Build and Deploy Snapshot / Build and Deploy Snapshot (push) Waiting to run Details
Build and Deploy Snapshot / Trigger Docs Build (push) Blocked by required conditions Details
Build and Deploy Snapshot / Verify (push) Blocked by required conditions Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[early-access:true toolchain:true version:24], map[id:${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }} name:Linux]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[early-access:true toolchain:true version:24], map[id:windows-latest name:Windows]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:false version:17], map[id:${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }} name:Linux]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:false version:17], map[id:windows-latest name:Windows]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:false version:21], map[id:${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }} name:Linux]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:false version:21], map[id:windows-latest name:Windows]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:false version:22], map[id:${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }} name:Linux]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:false version:22], map[id:windows-latest name:Windows]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:true version:23], map[id:${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }} name:Linux]) (push) Waiting to run Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:true version:23], map[id:windows-latest name:Windows]) (push) Waiting to run Details
Run System Tests / Java ${{ matrix.java.version}} (map[toolchain:false version:17]) (push) Waiting to run Details
Run System Tests / Java ${{ matrix.java.version}} (map[toolchain:true version:21]) (push) Waiting to run Details

This commit is contained in:
Phillip Webb 2025-04-11 10:30:38 -07:00
parent 768de9a29f
commit bc9b331b1d
1 changed files with 28 additions and 1 deletions

View File

@ -77,6 +77,11 @@ bom {
}
}
library("AssertJ", "${assertjVersion}") {
prohibit {
contains "-M"
contains "-RC"
because "we don't want milestones or release candidates"
}
group("org.assertj") {
bom("assertj-bom")
}
@ -329,6 +334,12 @@ bom {
}
}
library("Elasticsearch Client", "8.17.4") {
prohibit {
contains "-alpha"
contains "-beta"
contains "-rc"
because "we don't want preview releases"
}
alignWith {
version {
from "org.springframework.data:spring-data-elasticsearch"
@ -444,7 +455,7 @@ bom {
library("GraphQL Java", "23.0") {
prohibit {
startsWith(["2018-", "2019-", "2020-", "2021-", "230521-"])
because "These are snapshots that we don't want to see"
because "we don't want thses snapshots"
}
alignWith {
version {
@ -607,6 +618,12 @@ bom {
}
}
library("HttpAsyncClient", "4.1.5") {
prohibit {
contains "-alpha"
contains "-beta"
contains "-rc"
because "we don't want preview releases"
}
group("org.apache.httpcomponents") {
modules = [
"httpasyncclient" {
@ -616,6 +633,12 @@ bom {
}
}
library("HttpClient5", "5.4.3") {
prohibit {
contains "-alpha"
contains "-beta"
contains "-rc"
because "we don't want preview releases"
}
group("org.apache.httpcomponents.client5") {
modules = [
"httpclient5",
@ -664,6 +687,10 @@ bom {
}
}
library("Jackson Bom", "${jacksonVersion}") {
prohibit {
contains "-rc"
because "we don't want release candidates"
}
group("com.fasterxml.jackson") {
bom("jackson-bom")
}