Skip to content

Commit

Permalink
[kiworkshop#62] add tag-api module settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jiwookim5757 committed Feb 24, 2020
1 parent fd17d56 commit ae77f8a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
2 changes: 2 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ include 'mother-api'
include 'common'
include 'content-api'
include 'auth-api'
include 'tag-api'
include 'tag-api'

27 changes: 27 additions & 0 deletions tag-api/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
plugins {
id 'java'
}

group 'org.kiworkshop'
version '0.0.1-SNAPSHOT'

sourceCompatibility = 11

repositories {
mavenCentral()
}

dependencies {
implementation project(':common')

implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
runtimeOnly 'com.h2database:h2'
}

asciidoctor {
inputs.dir snippetsDir
sourceDir 'docs'
outputDir = file('build/docs')
dependsOn test
}

0 comments on commit ae77f8a

Please sign in to comment.