You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cas/cas-server/README.md
+19-6Lines changed: 19 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,11 @@ Generic CAS WAR overlay to exercise the latest versions of CAS. This overlay cou
6
6
# Versions
7
7
8
8
```xml
9
-
<cas.version>5.1.x</cas.version>
9
+
<cas.version>5.3.x</cas.version>
10
10
```
11
11
12
12
# Requirements
13
+
13
14
* JDK 1.8+
14
15
15
16
# Configuration
@@ -64,20 +65,23 @@ Run the CAS web application as an executable WAR via Spring Boot. This is most u
64
65
65
66
### Warning!
66
67
67
-
Be careful with this method of deployment. `bootRun` is not designed to work with already executable WAR artifacts such that CAS server web application. YMMV. Today, uses of this mode ONLY work when there is **NO OTHER** dependency added to the build script and the `cas-server-webapp` is the only present module. See [this issue](https://github.com/apereo/cas/issues/2334) and [this issue](https://github.com/spring-projects/spring-boot/issues/8320) for more info.
68
+
Be careful with this method of deployment. `bootRun` is not designed to work with already executable WAR artifacts such that CAS server web application. YMMV. Today, uses of this mode ONLY work when there is **NO OTHER** dependency added to the build script and the `cas-server-webapp` is the only present module. See [this issue](https://github.com/spring-projects/spring-boot/issues/8320) for more info.
68
69
69
70
70
71
## Spring Boot App Server Selection
71
-
There is an app.server property in the pom.xml that can be used to select a spring boot application server.
72
-
It defaults to "-tomcat" but "-jetty" and "-undertow" are supported.
73
-
It can also be set to an empty value (nothing) if you want to deploy CAS to an external application server of your choice and you don't want the spring boot libraries included.
72
+
73
+
There is an app.server property in the `pom.xml` that can be used to select a spring boot application server.
74
+
It defaults to `-tomcat` but `-jetty` and `-undertow` are supported.
75
+
76
+
It can also be set to an empty value (nothing) if you want to deploy CAS to an external application server of your choice.
74
77
75
78
```xml
76
79
<app.server>-tomcat<app.server>
77
80
```
78
81
79
82
## Windows Build
80
-
If you are building on windows, try build.cmd instead of build.sh. Arguments are similar but for usage, run:
83
+
84
+
If you are building on windows, try `build.cmd` instead of `build.sh`. Arguments are similar but for usage, run:
81
85
82
86
```
83
87
build.cmd help
@@ -86,3 +90,12 @@ build.cmd help
86
90
## External
87
91
88
92
Deploy resultant `target/cas.war` to a servlet container of choice.
93
+
94
+
95
+
## Command Line Shell
96
+
97
+
Invokes the CAS Command Line Shell. For a list of commands either use no arguments or use `-h`. To enter the interactive shell use `-sh`.
0 commit comments