-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
118 lines (105 loc) · 2.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
plugins {
id 'java'
id 'maven-publish'
id "com.github.node-gradle.node" version "7.1.0"
id 'com.enonic.xp.app' version '3.5.2'
id 'no.item.xp.codegen' version '2.6.3'
}
app {
name = "${appName}"
displayName = "${appDisplayName}"
vendorName = "${vendorName}"
vendorUrl = "${vendorUrl}"
systemVersion = "${xpVersion}"
}
dependencies {
include "com.enonic.xp:lib-common:${xpVersion}"
include "com.enonic.xp:lib-content:${xpVersion}"
include "com.enonic.xp:lib-context:${xpVersion}"
include "com.enonic.xp:lib-event:${xpVersion}"
include "com.enonic.xp:lib-i18n:${xpVersion}"
include "com.enonic.xp:lib-repo:${xpVersion}"
include 'com.enonic.lib:lib-cron:1.1.2'
include 'com.enonic.lib:lib-http-client:3.2.2'
}
repositories {
mavenLocal()
mavenCentral()
xp.enonicRepo()
maven { url "https://repo.itemtest.no/releases" }
maven { url 'https://jitpack.io' }
}
node {
download = true
version = '22.12.0'
}
tasks.withType(Copy).configureEach {
includeEmptyDirs = false
}
tasks.register("dev", NpmTask) {
args = [
"run",
"watch"
]
dependsOn npmInstall, deploy
environment = [
"FORCE_COLOR": "true",
]
}
tasks.register("npmCheck", NpmTask) {
dependsOn npmInstall
args = [
"run",
"check"
]
environment = [
"FORCE_COLOR": "true",
]
}
// If you ALWAYS want to SKIP `test` and `check` tasks on development build, wrap this inside an 'if...'
// if (!(project.hasProperty('dev') || project.hasProperty('development'))) {
check.dependsOn npmCheck
// }
tasks.register("npmBuild", NpmTask) {
args = [
"run",
"--silent",
project.hasProperty("dev") || project.hasProperty("development") ? "build" : "minify"
]
dependsOn npmInstall
dependsOn generateTypeScript
environment = [
"FORCE_COLOR": "true",
"LOG_LEVEL_FROM_GRADLE": gradle.startParameter.logLevel.toString(),
"NODE_ENV": project.hasProperty("dev") || project.hasProperty("development") ? "development" : "production"
]
inputs.dir "src/main/resources"
outputs.dir "build/resources/main"
}
processResources {
include '**/*'
exclude '**/tsconfig.*.json'
exclude '**/*.ts'
includeEmptyDirs false
}
jar.dependsOn npmBuild
publishing {
repositories {
maven {
name = "itemtestRepository"
url = "https://repo.itemtest.no/releases"
credentials(PasswordCredentials)
authentication {
basic(BasicAuthentication)
}
}
}
publications {
maven(MavenPublication) {
from components.java
groupId group
artifactId projectName
version version
}
}
}