Files
spring-shell/build.gradle
Janne Valkealahti 6983ef5c10 Bundle Javadoc with Antora
- Remove javadoc related tasks from root project
- Add aggregated javadoc task to spring-shell-docs
- Various antora version updates
- Bundle javadoc via collector into antora build
- Remove refs to distZip in workflows
- Relates #1132
2024-08-29 08:39:56 +01:00

32 lines
637 B
Groovy

plugins {
id "base"
}
description = 'Spring Shell'
repositories {
maven { url 'https://repo.spring.io/snapshot' }
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/release' }
mavenCentral()
}
allprojects {
group = 'org.springframework.shell'
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/release' }
if (version.contains('-')) {
maven { url "https://repo.spring.io/milestone" }
}
if (version.endsWith('-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
}
}
configurations.all {
resolutionStrategy.cacheChangingModulesFor 1, 'hours'
}
}