pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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.5.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.lemon.lifecenter</groupId>
  12. <artifactId>LifeCenter</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>war</packaging>
  15. <name>LifeCenter</name>
  16. <description>LifeCenter project for Spring Boot</description>
  17. <properties>
  18. <java.version>11</java.version>
  19. </properties>
  20. <repositories>
  21. <repository>
  22. <id>cubrid</id>
  23. <url>http://maven.cubrid.org/</url>
  24. </repository>
  25. </repositories>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-tomcat</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-test</artifactId>
  39. <scope>test</scope>
  40. <exclusions>
  41. <exclusion>
  42. <groupId>org.junit.vintage</groupId>
  43. <artifactId>junit-vintage-engine</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.tomcat.embed</groupId>
  49. <artifactId>tomcat-embed-jasper</artifactId>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>cubrid</groupId>
  54. <artifactId>cubrid-jdbc</artifactId>
  55. <version>10.2.1.8849</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.mybatis.spring.boot</groupId>
  59. <artifactId>mybatis-spring-boot-starter</artifactId>
  60. <version>2.1.1</version>
  61. </dependency>
  62. <!-- jstl dependecy -->
  63. <dependency>
  64. <groupId>javax.servlet</groupId>
  65. <artifactId>jstl</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>taglibs</groupId>
  69. <artifactId>standard</artifactId>
  70. <version>1.1.2</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.bgee.log4jdbc-log4j2</groupId>
  74. <artifactId>log4jdbc-log4j2-jdbc4</artifactId>
  75. <version>1.16</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-jdbc</artifactId>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/org.json/json -->
  82. <dependency>
  83. <groupId>org.json</groupId>
  84. <artifactId>json</artifactId>
  85. <version>20180813</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.mobile</groupId>
  89. <artifactId>spring-mobile-device</artifactId>
  90. <version>1.1.0.RELEASE</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-devtools</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.googlecode.json-simple</groupId>
  98. <artifactId>json-simple</artifactId>
  99. <version>1.1</version>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>