-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
40 lines (34 loc) · 1 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
plugins {
id 'maven-publish'
id 'com.enonic.defaults' version '2.1.5'
id 'com.enonic.xp.app' version '3.5.2'
}
app {
name = "${appName}"
displayName = "${appDisplayName}"
vendorName = "${vendorName}"
vendorUrl = "${vendorUrl}"
systemVersion = "${xpVersion}"
}
dependencies {
implementation "com.enonic.xp:core-api:${xpVersion}"
implementation "com.enonic.xp:portal-api:${xpVersion}"
include "com.enonic.xp:lib-auth:${xpVersion}"
include "com.enonic.xp:lib-common:${xpVersion}"
include "com.enonic.xp:lib-context:${xpVersion}"
include "com.enonic.xp:lib-portal:${xpVersion}"
include "com.enonic.xp:lib-cluster:${xpVersion}"
include "com.enonic.lib:lib-http-client:3.2.2"
include 'com.auth0:java-jwt:4.5.0'
include 'com.auth0:jwks-rsa:0.22.1'
testImplementation "com.enonic.xp:testing:${xpVersion}"
}
repositories {
mavenCentral()
xp.enonicRepo('dev')
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}