pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.11.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.tsi.api</groupId>
  12. <artifactId>tsi-node-dir</artifactId>
  13. <version>0.0.1</version>
  14. <name>tsi-node-dir</name>
  15. <description>TSI Node Dir Application</description>
  16. <packaging>jar</packaging>
  17. <repositories>
  18. <repository>
  19. <id>oracle</id>
  20. <url>http://maven.jahia.org/maven2</url>
  21. </repository>
  22. </repositories>
  23. <properties>
  24. <java.version>1.8</java.version>
  25. <!-- jar 배포용 -->
  26. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  27. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  28. <maven.compiler.source>1.8</maven.compiler.source>
  29. <maven.compiler.target>1.8</maven.compiler.target>
  30. <!--main 함수가 있는 class 경로-->
  31. <start-class>com.tsi.api.server.TsiNodeDirApplication</start-class>
  32. <webapp.lib>C:\java\repository</webapp.lib>
  33. <maven.test.skip>true</maven.test.skip>
  34. </properties>
  35. <dependencies>
  36. <!-- <dependency>-->
  37. <!-- <groupId>com.tsi</groupId>-->
  38. <!-- <artifactId>tsi-common</artifactId>-->
  39. <!-- <version>1.0</version>-->
  40. <!-- <scope>system</scope>-->
  41. <!-- <systemPath>${webapp.lib}/tsi-common.jar</systemPath>-->
  42. <!-- </dependency>-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-jdbc</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-web</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mybatis.spring.boot</groupId>
  53. <artifactId>mybatis-spring-boot-starter</artifactId>
  54. <version>2.1.3</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  58. <artifactId>log4jdbc-log4j2-jdbc4.1</artifactId>
  59. <version>1.16</version>
  60. </dependency>
  61. <!-- FOR DATABASE: START -->
  62. <dependency>
  63. <groupId>com.oracle</groupId>
  64. <artifactId>ojdbc7</artifactId>
  65. <version>12.1.0.2</version>
  66. <scope>system</scope>
  67. <systemPath>${webapp.lib}/ojdbc7-12.1.0.2.jar</systemPath>
  68. </dependency>
  69. <dependency>
  70. <groupId>tibero6</groupId>
  71. <artifactId>tibero6-jdbc</artifactId>
  72. <version>1.0.0</version>
  73. <scope>system</scope>
  74. <systemPath>${webapp.lib}/tibero6-jdbc-14.jar</systemPath>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.mariadb.jdbc</groupId>
  78. <artifactId>mariadb-java-client</artifactId>
  79. <version>2.7.0</version>
  80. </dependency>
  81. <!-- FOR DATABASE: END -->
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-devtools</artifactId>
  85. <scope>runtime</scope>
  86. <optional>true</optional>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-configuration-processor</artifactId>
  91. <optional>true</optional>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.projectlombok</groupId>
  95. <artifactId>lombok</artifactId>
  96. <optional>true</optional>
  97. <scope>compile</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>net.sf.json-lib</groupId>
  101. <artifactId>json-lib</artifactId>
  102. <version>2.4</version>
  103. <classifier>jdk15</classifier>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-tomcat</artifactId>
  108. </dependency>
  109. <!-- FOR UTIL: START -->
  110. <dependency>
  111. <groupId>com.github.dozermapper</groupId>
  112. <artifactId>dozer-spring4</artifactId>
  113. <version>6.5.0</version>
  114. </dependency>
  115. <!-- FOR UTIL: END -->
  116. <!-- FOR JPA: START -->
  117. <!--<dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-data-jpa</artifactId>
  120. </dependency>-->
  121. <!-- FOR JPA: END -->
  122. </dependencies>
  123. <build>
  124. <plugins>
  125. <plugin>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-maven-plugin</artifactId>
  128. <configuration>
  129. <includeSystemScope>true</includeSystemScope>
  130. <excludes>
  131. <exclude>
  132. <groupId>org.projectlombok</groupId>
  133. <artifactId>lombok</artifactId>
  134. </exclude>
  135. </excludes>
  136. </configuration>
  137. </plugin>
  138. </plugins>
  139. </build>
  140. </project>