-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
33 lines (24 loc) · 1.06 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
group = 'com.dmitrij-drandarov'
version = '0.0.1-SNAPSHOT'
allprojects {
repositories {
mavenCentral()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
}
//------------------------------------------------------------------------------------------------------------------------
// Tasks - Application
//------------------------------------------------------------------------------------------------------------------------
task bootFullApplication(type: GradleBuild) {
group 'application'
setTasks([':client:npmUpdate', ':client:clean', ':client:buildClientToSpring', ':backend:bootRun'])
}
//------------------------------------------------------------------------------------------------------------------------
// Tasks - Init project
//------------------------------------------------------------------------------------------------------------------------
task wrapper(type: Wrapper) {
group 'init'
gradleVersion '4.2'
distributionType Wrapper.DistributionType.ALL
}