강의

멘토링

커뮤니티

Inflearn Community Q&A

woong29's profile image
woong29

asked

Developing Spring and JPA based web applications

Frontend Library Setup

Maven 대신 gradle 쓰시는 분들 위해서 남깁니다...

Written on

·

730

9

https://plugins.gradle.org/plugin/org.siouan.frontend

사용하시면 될듯합니다.

////build.gradle 설정

def preinstalledNodeDistributionDirectory = file("${projectDir}/src/main/resources/static/node")

apply plugin: 'org.siouan.frontend-jdk11'

frontend {

    nodeDistributionProvided = false

    nodeInstallDirectory = file("${projectDir}/src/main/resources/static/node")

    packageJsonDirectory =  file("${projectDir}/src/main/resources/static")

    nodeVersion = '12.16.3'

    assembleScript = 'run build'

    cleanScript = 'run clean'

    checkScript = 'run check'

}

thymeleafspringJPAjavaspring-boot

Answer 2

0

죄송한데 동작원리부터 해보고 공부하고싶어서 해보는중인데, 그래들에 그대로 붙여넣기하면 되는건가요?

0

whiteship님의 프로필 이미지
whiteship
Instructor

좋은 정보 감사합니다.

woong29's profile image
woong29

asked

Ask a question