forked from UniconLabs/bootiful-cas-client
-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
53 lines (46 loc) · 1.46 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
buildscript {
ext {
springBootVersion = '3.0.13'
casClientVersion = '4.0.4'
jaxbApiVersion = '4.0.0'
jaxbRuntimeVersion = '4.0.1'
}
repositories {
gradlePluginPortal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("io.spring.gradle:dependency-management-plugin:1.1.4")
}
}
apply plugin: 'groovy'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)
}
}
jar {
archiveBaseName.set('bootiful-cas-client')
archiveVersion.set('1.4.2')
}
sourceCompatibility = 17
targetCompatibility = 17
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation('org.springframework.boot:spring-boot-starter-thymeleaf')
implementation('org.springframework.boot:spring-boot-starter-web')
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation('org.apache.groovy:groovy')
implementation('org.webjars:bootstrap:3.4.0')
implementation("org.apereo.cas.client:cas-client-support-springboot:${casClientVersion}")
implementation("jakarta.xml.bind:jakarta.xml.bind-api:$jaxbApiVersion")
implementation("com.sun.xml.ws:jaxws-rt:$jaxbRuntimeVersion")
}
bootBuildImage {
imageName = "apereo/${project.name}"
}