-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (35 loc) · 810 Bytes
/
build.gradle
File metadata and controls
41 lines (35 loc) · 810 Bytes
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
plugins {
id 'com.enonic.xp.app' version '3.4.0'
id 'maven-publish'
}
app {
name = "${appName}"
displayName = "${appDisplayName}"
vendorName = "${vendorName}"
vendorUrl = "${vendorUrl}"
systemVersion = "${xpVersion}"
}
dependencies {
implementation "com.enonic.xp:script-api:${xpVersion}"
include "com.enonic.xp:lib-portal:${xpVersion}"
include "com.enonic.lib:lib-util:2.0.0"
}
repositories {
mavenLocal()
jcenter()
xp.enonicRepo()
}
publishing {
publications {
maven(MavenPublication) {
groupId = "${group}"
artifactId = "${projectName}"
version = "${version}"
from components.java
}
}
}
wrapper {
gradleVersion = '8.4'
distributionType = Wrapper.DistributionType.BIN
}