pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>kr.co.iya</groupId>
  6. <artifactId>iya-base</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <description>iya 공통프레임웍</description>
  10. <parent>
  11. <groupId>kr.co.iya.boot</groupId>
  12. <artifactId>iya-base-parent</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. </parent>
  15. <scm>
  16. <connection>scm:git:${iya.git.url}/utcb-base.git</connection>
  17. </scm>
  18. <build>
  19. <finalName>${project.artifactId}-${project.version}</finalName>
  20. <resources>
  21. <resource>
  22. <directory>src/main/resources</directory>
  23. <filtering>true</filtering>
  24. </resource>
  25. <resource>
  26. <directory>src/main/java</directory>
  27. </resource>
  28. </resources>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-compiler-plugin</artifactId>
  33. <configuration>
  34. <source>${java.version}</source>
  35. <target>${java.version}</target>
  36. <encoding>UTF-8</encoding>
  37. <verbose>false</verbose>
  38. <staleMillis>1</staleMillis>
  39. <useIncrementalCompilation>${maven.compiler.fullReCompile}</useIncrementalCompilation>
  40. </configuration>
  41. </plugin>
  42. <plugin>
  43. <groupId>org.codehaus.mojo</groupId>
  44. <artifactId>buildnumber-maven-plugin</artifactId>
  45. <configuration>
  46. <!-- <shortRevisionLength>5</shortRevisionLength> -->
  47. <revisionOnScmFailure>noScm</revisionOnScmFailure>
  48. <buildNumberPropertyName>current.build.revision</buildNumberPropertyName>
  49. <scmBranchPropertyName>current.build.branch</scmBranchPropertyName>
  50. <timestampFormat>{0,date,yyyy/MM/dd HH:mm:ss}</timestampFormat>
  51. <timestampPropertyName>current.build.timestamp</timestampPropertyName>
  52. </configuration>
  53. <executions>
  54. <execution>
  55. <phase>validate</phase>
  56. <goals>
  57. <goal>create</goal>
  58. </goals>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-jar-plugin</artifactId>
  65. <configuration>
  66. <archive>
  67. <manifest>
  68. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  69. </manifest>
  70. <manifestEntries>
  71. <Implementation-Revision>${current.build.revision}</Implementation-Revision>
  72. <Implementation-ScmBranch>${current.build.branch}</Implementation-ScmBranch>
  73. <Implementation-BuildTime>${current.build.timestamp}</Implementation-BuildTime>
  74. </manifestEntries>
  75. </archive>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. <dependencies>
  81. <!-- org.springframework.boot/configuration -->
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-configuration-processor</artifactId>
  85. </dependency>
  86. <!-- org.springframework.boot/starter -->
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-aop</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-tomcat</artifactId>
  94. </dependency>
  95. <!-- org.mybatis.spring.boot/starter -->
  96. <dependency>
  97. <groupId>org.mybatis.spring.boot</groupId>
  98. <artifactId>mybatis-spring-boot-starter</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.data</groupId>
  102. <artifactId>spring-data-commons</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.kafka</groupId>
  106. <artifactId>spring-kafka</artifactId>
  107. </dependency>
  108. <!-- org.apache.tomcat -->
  109. <dependency>
  110. <groupId>org.apache.tomcat</groupId>
  111. <artifactId>tomcat-catalina-ha</artifactId>
  112. </dependency>
  113. <!-- mariadb -->
  114. <dependency>
  115. <groupId>org.mariadb.jdbc</groupId>
  116. <artifactId>mariadb-java-client</artifactId>
  117. </dependency>
  118. <!-- postgresql -->
  119. <dependency>
  120. <groupId>org.postgresql</groupId>
  121. <artifactId>postgresql</artifactId>
  122. </dependency>
  123. <!-- h2database -->
  124. <dependency>
  125. <groupId>com.h2database</groupId>
  126. <artifactId>h2</artifactId>
  127. </dependency>
  128. <!-- log4jdbc -->
  129. <dependency>
  130. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  131. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  132. </dependency>
  133. <!-- projectlombok -->
  134. <dependency>
  135. <groupId>org.projectlombok</groupId>
  136. <artifactId>lombok</artifactId>
  137. <optional>true</optional>
  138. </dependency>
  139. <!-- commons-xxx -->
  140. <dependency>
  141. <groupId>commons-io</groupId>
  142. <artifactId>commons-io</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>commons-fileupload</groupId>
  146. <artifactId>commons-fileupload</artifactId>
  147. </dependency>
  148. <dependency>
  149. <groupId>commons-codec</groupId>
  150. <artifactId>commons-codec</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>commons-beanutils</groupId>
  154. <artifactId>commons-beanutils</artifactId>
  155. </dependency>
  156. <!-- org.apache -->
  157. <dependency>
  158. <groupId>org.apache.commons</groupId>
  159. <artifactId>commons-pool2</artifactId>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.commons</groupId>
  163. <artifactId>commons-compress</artifactId>
  164. </dependency>
  165. <!-- org.apache.httpcomponents -->
  166. <dependency>
  167. <groupId>org.apache.httpcomponents</groupId>
  168. <artifactId>httpclient</artifactId>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.apache.httpcomponents</groupId>
  172. <artifactId>httpmime</artifactId>
  173. </dependency>
  174. <!-- sftp -->
  175. <dependency>
  176. <groupId>com.hierynomus</groupId>
  177. <artifactId>sshj</artifactId>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.google.code.gson</groupId>
  181. <artifactId>gson</artifactId>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.googlecode.json-simple</groupId>
  185. <artifactId>json-simple</artifactId>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.google.guava</groupId>
  189. <artifactId>guava</artifactId>
  190. </dependency>
  191. <dependency>
  192. <groupId>io.opentelemetry</groupId>
  193. <artifactId>opentelemetry-opencensus-shim</artifactId>
  194. </dependency>
  195. <!-- fasterxml.jackson -->
  196. <dependency>
  197. <groupId>com.fasterxml.jackson.core</groupId>
  198. <artifactId>jackson-databind</artifactId>
  199. </dependency>
  200. <dependency>
  201. <groupId>com.mikesamuel</groupId>
  202. <artifactId>json-sanitizer</artifactId>
  203. </dependency>
  204. <!-- springdoc(swagger) -->
  205. <dependency>
  206. <groupId>org.springdoc</groupId>
  207. <artifactId>springdoc-openapi-ui</artifactId>
  208. </dependency>
  209. </dependencies>
  210. </project>