Gunju-Ko / TIL

Today I Learn
0 stars 0 forks source link

gradle 플러그인 정리 #33

Open Gunju-Ko opened 2 years ago

Gunju-Ko commented 2 years ago

spring boot gradle plugin

plugins {
    id("org.springframework.boot") version "2.5.5"
}
ext['slf4j.version'] = '1.7.20'

공식 문서

Gunju-Ko commented 2 years ago

All-open compiler plugin

적용 방법

plugins {
  id "org.jetbrains.kotlin.plugin.allopen" version "1.5.31"
}
allOpen {
    annotation("com.my.Annotation")
    // annotations("com.another.Annotation", "com.third.Annotation")
}

spring support

plugins {
  id "org.jetbrains.kotlin.plugin.spring" version "1.5.31"
}

출처