This commit is contained in:
2022-02-11 17:53:17 +09:00
parent 9ce5fd87c6
commit ac002c7450

View File

@@ -2,6 +2,7 @@ plugins {
id 'org.springframework.boot' version '2.6.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id "com.github.node-gradle.node" version "3.2.0"
}
group = 'com.crypto'
@@ -16,8 +17,11 @@ configurations {
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2"}
}
apply plugin: "com.github.node-gradle.node"
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
@@ -28,6 +32,7 @@ dependencies {
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
classpath "com.github.node-gradle:gradle-node-plugin:3.2.0"
}
tasks.named('test') {