| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | 
							- plugins {
 
-     id 'java'
 
-     id 'maven-publish' // maven 사용
 
- }
 
- group = 'com.evps'
 
- version = '0.0.1'
 
- 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 {
 
-     // lombok 라이브러리 추가 시작
 
-     compileOnly 'org.projectlombok:lombok'
 
-     annotationProcessor 'org.projectlombok:lombok'
 
-     testCompileOnly 'org.projectlombok:lombok'
 
-     testAnnotationProcessor 'org.projectlombok:lombok'
 
-     // lombok 라이브러리 추가 끝
 
-     implementation 'org.springframework.boot:spring-boot-starter-web'
 
-     implementation 'org.springframework.boot:spring-boot-starter-actuator'
 
-     implementation 'org.springframework.boot:spring-boot-starter-aop'
 
-     implementation 'io.micrometer:micrometer-registry-prometheus'
 
-     implementation 'org.springframework.kafka:spring-kafka'
 
-     implementation 'com.fasterxml.jackson.core:jackson-databind'
 
-     implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.0'
 
-     implementation 'org.mariadb.jdbc:mariadb-java-client'
 
- //    implementation 'com.oracle:ojdbc7:12.1.0.2'
 
-     implementation 'io.netty:netty-all:4.1.52.Final'
 
-     implementation 'com.evps:evps-common:0.0.1'
 
-     implementation 'com.its:its-common:0.0.1'
 
-     implementation 'com.its:its-network:0.0.1'
 
-     implementation 'com.its:its-spring:0.0.1'
 
-     testImplementation 'org.springframework.boot:spring-boot-starter-test'
 
- }
 
- 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'
 
- }
 
 
  |