-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (36 loc) · 1.03 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
buildscript {
ext.kotlin_version = '1.5.32'
ext.opensaml_version = '3.4.4'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.5.32'
}
group 'com.narbase.narnic.sso'
version '1.0.0'
repositories {
mavenCentral()
maven { url "https://dl.bintray.com/kotlin/ktor" }
maven { url "https://dl.bintray.com/kotlin/kotlinx" }
jcenter()
maven { url "https://build.shibboleth.net/maven/releases/" }
}
dependencies {
implementation('com.onelogin:java-saml:2.9.0')
implementation("org.opensaml:opensaml-saml-impl:$opensaml_version")
implementation("org.opensaml:opensaml-security-impl:$opensaml_version")
implementation("joda-time:joda-time:2.12.7")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.6.0")
}
sourceCompatibility = 1.8
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}