pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>org.springframework.boot</groupId>
  6. <artifactId>spring-boot-starter-parent</artifactId>
  7. <version>2.3.5.RELEASE</version>
  8. <relativePath /> <!-- lookup parent from repository -->
  9. </parent>
  10. <groupId>com.lemon.lifecenter</groupId>
  11. <artifactId>LifeCenter</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <packaging>war</packaging>
  14. <name>LifeCenter</name>
  15. <description>LifeCenter project for Spring Boot</description>
  16. <properties>
  17. <java.version>11</java.version>
  18. </properties>
  19. <repositories>
  20. <repository>
  21. <id>cubrid</id>
  22. <url>https://maven.cubrid.org/</url>
  23. </repository>
  24. </repositories>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-tomcat</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. <exclusions>
  40. <exclusion>
  41. <groupId>org.junit.vintage</groupId>
  42. <artifactId>junit-vintage-engine</artifactId>
  43. </exclusion>
  44. </exclusions>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.tomcat.embed</groupId>
  48. <artifactId>tomcat-embed-jasper</artifactId>
  49. <scope>provided</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>cubrid</groupId>
  53. <artifactId>cubrid-jdbc</artifactId>
  54. <version>10.2.1.8849</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.mybatis.spring.boot</groupId>
  58. <artifactId>mybatis-spring-boot-starter</artifactId>
  59. <version>2.1.1</version>
  60. </dependency>
  61. <!-- jstl dependecy -->
  62. <dependency>
  63. <groupId>javax.servlet</groupId>
  64. <artifactId>jstl</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>taglibs</groupId>
  68. <artifactId>standard</artifactId>
  69. <version>1.1.2</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  73. <artifactId>log4jdbc-log4j2-jdbc4</artifactId>
  74. <version>1.16</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-jdbc</artifactId>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/org.json/json -->
  81. <dependency>
  82. <groupId>org.json</groupId>
  83. <artifactId>json</artifactId>
  84. <version>20180813</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.mobile</groupId>
  88. <artifactId>spring-mobile-device</artifactId>
  89. <version>1.1.0.RELEASE</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-devtools</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.googlecode.json-simple</groupId>
  97. <artifactId>json-simple</artifactId>
  98. <version>1.1</version>
  99. </dependency>
  100. <!-- 엑셀 제어(xls) maven setting -->
  101. <dependency>
  102. <groupId>org.apache.poi</groupId>
  103. <artifactId>poi</artifactId>
  104. <version>3.13</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.apache.poi</groupId>
  108. <artifactId>poi-scratchpad</artifactId>
  109. <version>3.13</version>
  110. </dependency>
  111. <!-- 엑셀 제어(xlsx) maven setting-->
  112. <dependency>
  113. <groupId>org.apache.poi</groupId>
  114. <artifactId>poi-ooxml</artifactId>
  115. <version>3.13</version>
  116. </dependency>
  117. <!-- 파일업로드/다운로드 -->
  118. <dependency>
  119. <groupId>commons-fileupload</groupId>
  120. <artifactId>commons-fileupload</artifactId>
  121. <version>1.4</version>
  122. </dependency>
  123. </dependencies>
  124. <build>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-maven-plugin</artifactId>
  129. </plugin>
  130. </plugins>
  131. </build>
  132. </project>