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 6f3f6d1 commit 2c85287
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ plugins {
id 'java'
id 'java-library'
id 'maven-publish'
id 'org.jetbrains.kotlin.jvm' version '1.8.10'
id 'org.jetbrains.kotlin.plugin.spring' version '1.8.10'
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.4'
version = '0.0.5'
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 @@ -46,6 +54,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"

implementation 'com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3'
Expand Down

0 comments on commit 2c85287

Please sign in to comment.