Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit bbabdbc

Browse files
committed
documentation update
1 parent a403d12 commit bbabdbc

4 files changed

Lines changed: 16 additions & 13 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ CAS management web application WAR overlay for CAS with externalized configurati
66
# Versions
77

88
```xml
9-
<cas.version>6.2.x</cas.version>
9+
<cas.version>6.3.x</cas.version>
1010
```
1111

1212
# Requirements

build.gradle

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
buildscript {
22
repositories {
33
mavenLocal()
4-
jcenter()
5-
maven { url "https://repo.spring.io/libs-milestone" }
6-
maven { url "https://repo.spring.io/libs-snapshot" }
7-
maven { url "https://plugins.gradle.org/m2/" }
4+
jcenter()
5+
gradlePluginPortal()
86
}
97
dependencies {
108
classpath "org.springframework.boot:spring-boot-gradle-plugin:${project.springBootVersion}"
@@ -15,11 +13,9 @@ buildscript {
1513
repositories {
1614
mavenLocal()
1715
mavenCentral()
18-
jcenter()
16+
maven { url 'https://oss.sonatype.org/content/repositories/releases' }
1917
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
2018
maven { url 'https://build.shibboleth.net/nexus/content/repositories/releases/' }
21-
maven { url "https://repo.spring.io/milestone/" }
22-
maven { url "https://oss.jfrog.org/artifactory/oss-snapshot-local" }
2319
}
2420

2521
apply plugin: "io.freefair.war-overlay"
@@ -46,6 +42,14 @@ idea {
4642
}
4743
}
4844

45+
configurations.all {
46+
resolutionStrategy {
47+
cacheChangingModulesFor 0, "seconds"
48+
cacheDynamicVersionsFor 0, "seconds"
49+
preferProjectModules()
50+
}
51+
}
52+
4953
war {
5054
entryCompression = ZipEntryCompression.STORED
5155
}

gradle.properties

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# Versions
22

3-
casmgmt.version=6.2.1-SNAPSHOT
4-
cas.version=6.2.2-SNAPSHOT
5-
springBootVersion=2.2.8.RELEASE
3+
casmgmt.version=6.3.0-SNAPSHOT
4+
springBootVersion=2.3.7.RELEASE
65

76
# Use -jetty, -undertow to other containers
87
# Or blank if you want to deploy to an external container
@@ -11,4 +10,4 @@ appServer=-tomcat
1110
sourceCompatibility=11
1211
targetCompatibility=11
1312

14-
gradleMavenPluginVersion=5.1.1
13+
gradleMavenPluginVersion=5.3.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)