Consistent configuration of test repository URLs
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[toolchain:false version:25], 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:25], map[id:windows-latest name:Windows]) (push) Waiting to run
Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:true 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:true version:17], map[id:windows-latest name:Windows]) (push) Waiting to run
Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:true 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:true version:21], map[id:windows-latest name:Windows]) (push) Waiting to run
Details
Run CodeQL Analysis / run-analysis (push) Waiting to run
Details
Run System Tests / Java ${{ matrix.java.version}} (map[toolchain:true version:17]) (push) Waiting to run
Details
Run System Tests / Java ${{ matrix.java.version}} (map[toolchain:true version:21]) (push) Waiting to run
Details
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[toolchain:false version:25], 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:25], map[id:windows-latest name:Windows]) (push) Waiting to run
Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:true 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:true version:17], map[id:windows-latest name:Windows]) (push) Waiting to run
Details
CI / ${{ matrix.os.name}} | Java ${{ matrix.java.version}} (map[toolchain:true 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:true version:21], map[id:windows-latest name:Windows]) (push) Waiting to run
Details
Run CodeQL Analysis / run-analysis (push) Waiting to run
Details
Run System Tests / Java ${{ matrix.java.version}} (map[toolchain:true 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:
parent
2eaad0585c
commit
1ebc557bd5
|
@ -29,7 +29,7 @@ java {
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "file:${rootDir}/../test-repository"}
|
maven { url = layout.projectDirectory.dir("../test-repository") }
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
spring.mavenRepositoriesExcludingBootGroup()
|
spring.mavenRepositoriesExcludingBootGroup()
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
evaluate(new File("${gradle.parent.rootProject.rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
|
evaluate(new File("${gradle.parent.rootProject.rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "file:${rootDir}/../test-repository"}
|
maven { url = layout.settingsDirectory.dir("../test-repository") }
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
spring.mavenRepositoriesExcludingBootGroup()
|
spring.mavenRepositoriesExcludingBootGroup()
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@ java {
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
maven { url = layout.projectDirectory.dir("../int-test-maven-repository") }
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
spring.mavenRepositories()
|
spring.mavenRepositories()
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
evaluate(new File("${gradle.parent.rootProject.rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
|
evaluate(new File("${gradle.parent.rootProject.rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
maven { url = layout.settingsDirectory.dir("../int-test-maven-repository") }
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
spring.mavenRepositories()
|
spring.mavenRepositories()
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ java {
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
maven { url = layout.projectDirectory.dir("../int-test-maven-repository") }
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
spring.mavenRepositories()
|
spring.mavenRepositories()
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
evaluate(new File("${gradle.parent.rootProject.rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
|
evaluate(new File("${gradle.parent.rootProject.rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
maven { url = layout.settingsDirectory.dir("../int-test-maven-repository") }
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
spring.mavenRepositories()
|
spring.mavenRepositories()
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ java {
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
maven { url = layout.projectDirectory.dir("../int-test-maven-repository") }
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
spring.mavenRepositories()
|
spring.mavenRepositories()
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
evaluate(new File("${gradle.parent.rootProject.rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
|
evaluate(new File("${gradle.parent.rootProject.rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
|
||||||
repositories {
|
repositories {
|
||||||
maven { url "file:${rootDir}/../int-test-maven-repository"}
|
maven { url = layout.settingsDirectory.dir("../int-test-maven-repository") }
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
spring.mavenRepositories()
|
spring.mavenRepositories()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue