forked from InoFlexin/meta-class
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
90 lines (76 loc) · 2.51 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
plugins {
id 'org.springframework.boot' version '2.5.1'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id "com.github.node-gradle.node" version "2.2.3"
id 'java'
}
group 'com.metaclass'
version '1.0-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation "mysql:mysql-connector-java:8.0.23"
compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
}
def webappDir = "$projectDir/react/meta-class-client"
sourceSets {
main {
resources {
srcDirs = ["$webappDir/build", "$projectDir/src/main/resources"]
}
}
}
processResources {
dependsOn "buildReact"
}
node {
version = '10.15.1' // 설치할 node 버전
yarnVersion = '1.13.0' // 설치할 yarn 버전
download = true
distBaseUrl = 'https://nodejs.org/dist' // node를 다운받을 수 있는 주소
workDir = file("${project.rootDir}/nodejs") // node를 설치할 폴더를 설정
yarnWorkDir = file("${project.rootDir}/yarn") // yarn을 설치할 폴더를 설정
npmWorkDir = file("${project.rootDir}/npm")
}
task buildReact(type: Exec) {
dependsOn "installReact"
workingDir "$webappDir"
inputs.dir "$webappDir"
group = BasePlugin.BUILD_GROUP
if(System.getProperty('os.name').toLowerCase(Locale.ROOT).contains('windows')) {
commandLine "yarn.cmd", "build"
} else {
commandLine "yarn", "build"
}
}
task installReact(type: Exec) {
workingDir "$webappDir"
inputs.dir "$webappDir"
group = BasePlugin.BUILD_GROUP
if(System.getProperty("os.name").toLowerCase(Locale.ROOT).contains('windows')) {
commandLine "yarn.cmd", "audit", "fix"
commandLine "yarn.cmd", "install"
} else {
commandLine "yarn", "audit", "fix"
commandLine "yarn", "install"
}
}
test {
useJUnitPlatform()
}