| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | 
							- plugins {
 
-     id 'java'
 
- }
 
- group = 'com.sig'
 
- version = ''
 
- sourceCompatibility = '1.8'
 
- targetCompatibility = '1.8'
 
- compileJava.options.encoding = 'UTF-8'
 
- repositories {
 
-     mavenLocal()
 
-     mavenCentral()
 
-     def os = org.gradle.internal.os.OperatingSystem.current()
 
-     if (os.isWindows()) {
 
-         flatDir {
 
-             dirs 'C:/java/repository/'
 
-         }
 
-     } else {
 
-         flatDir {
 
-             dirs '/Users/openvalue/Projects/java/repository/'
 
-         }
 
-     }
 
- }
 
- dependencies {
 
-     implementation 'org.springframework.boot:spring-boot-starter-web'
 
-     implementation 'com.its:its-common:0.0.1'
 
-     implementation 'org.springframework.kafka:spring-kafka'
 
-     // lombok 라이브러리 추가 시작
 
-     compileOnly 'org.projectlombok:lombok'
 
-     annotationProcessor 'org.projectlombok:lombok'
 
-     testCompileOnly 'org.projectlombok:lombok'
 
-     testAnnotationProcessor 'org.projectlombok:lombok'
 
-     // lombok 라이브러리 추가 끝
 
-     testImplementation platform('org.junit:junit-bom:5.10.0')
 
-     testImplementation 'org.junit.jupiter:junit-jupiter'
 
- }
 
- test {
 
-     useJUnitPlatform()
 
- }
 
- jar {
 
-     enabled = false
 
- }
 
- compileJava.options.encoding = 'UTF-8'
 
- tasks.withType(JavaCompile).configureEach {
 
-     options.compilerArgs << '-Xlint:unchecked'
 
-     options.deprecation = true
 
-     options.encoding = 'UTF-8'
 
- }
 
 
  |