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

Commit

Permalink
documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoayyed committed Jan 20, 2021
1 parent a403d12 commit bbabdbc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CAS management web application WAR overlay for CAS with externalized configurati
# Versions

```xml
<cas.version>6.2.x</cas.version>
<cas.version>6.3.x</cas.version>
```

# Requirements
Expand Down
18 changes: 11 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
buildscript {
repositories {
mavenLocal()
jcenter()
maven { url "https://repo.spring.io/libs-milestone" }
maven { url "https://repo.spring.io/libs-snapshot" }
maven { url "https://plugins.gradle.org/m2/" }
jcenter()
gradlePluginPortal()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${project.springBootVersion}"
Expand All @@ -15,11 +13,9 @@ buildscript {
repositories {
mavenLocal()
mavenCentral()
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/releases' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://build.shibboleth.net/nexus/content/repositories/releases/' }
maven { url "https://repo.spring.io/milestone/" }
maven { url "https://oss.jfrog.org/artifactory/oss-snapshot-local" }
}

apply plugin: "io.freefair.war-overlay"
Expand All @@ -46,6 +42,14 @@ idea {
}
}

configurations.all {
resolutionStrategy {
cacheChangingModulesFor 0, "seconds"
cacheDynamicVersionsFor 0, "seconds"
preferProjectModules()
}
}

war {
entryCompression = ZipEntryCompression.STORED
}
Expand Down
7 changes: 3 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Versions

casmgmt.version=6.2.1-SNAPSHOT
cas.version=6.2.2-SNAPSHOT
springBootVersion=2.2.8.RELEASE
casmgmt.version=6.3.0-SNAPSHOT
springBootVersion=2.3.7.RELEASE

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

gradleMavenPluginVersion=5.1.1
gradleMavenPluginVersion=5.3.0
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit bbabdbc

Please sign in to comment.