Skip to content

Commit

Permalink
🔧 metadata.json 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
allbegray committed Apr 11, 2023
1 parent ff881b8 commit f33d84b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ plugins {
id 'maven-publish'
id 'org.jetbrains.kotlin.jvm' version '1.7.22'
id 'org.jetbrains.kotlin.plugin.spring' version '1.7.22'
id "org.jetbrains.kotlin.kapt" version "1.7.22"
id "org.jmailen.kotlinter" version "3.13.0"
}

group = 'herbaccara'
version = '0.0.2'
version = '0.0.3'
sourceCompatibility = '1.8'

publishing {
Expand All @@ -34,6 +35,13 @@ repositories {
maven { url = uri("https://jitpack.io") }
}

configurations {
compileOnly {
extendsFrom annotationProcessor
extendsFrom kapt
}
}

dependencies {
implementation 'org.jetbrains.kotlin:kotlin-reflect'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
Expand All @@ -47,6 +55,8 @@ dependencies {
implementation 'org.springframework.boot:spring-boot:2.7.0'
implementation 'org.springframework.boot:spring-boot-autoconfigure:2.7.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.7.0'
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor:2.7.0"
kapt "org.springframework.boot:spring-boot-configuration-processor:2.7.0"
}

tasks.withType(KotlinCompile) {
Expand Down

0 comments on commit f33d84b

Please sign in to comment.