pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.4.13</version>
  10. <relativePath /> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com</groupId>
  13. <artifactId>tsi-web-server</artifactId>
  14. <version>0.0.1</version>
  15. <name>tsi-web-server</name>
  16. <packaging>war</packaging>
  17. <description>TSI Web Server</description>
  18. <properties>
  19. <java.version>1.8</java.version>
  20. <maven.test.skip>true</maven.test.skip>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.aspectj</groupId>
  25. <artifactId>aspectjweaver</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-quartz</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-security</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-actuator</artifactId>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter -->
  48. <dependency>
  49. <groupId>org.mybatis.spring.boot</groupId>
  50. <artifactId>mybatis-spring-boot-starter</artifactId>
  51. <version>2.2.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-jdbc</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.tomcat.embed</groupId>
  59. <artifactId>tomcat-embed-jasper</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-tomcat</artifactId>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-configuration-processor</artifactId>
  69. <optional>true</optional>
  70. </dependency>
  71. <dependency>
  72. <groupId>javax.servlet</groupId>
  73. <artifactId>jstl</artifactId>
  74. </dependency>
  75. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-json -->
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-json</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.fusesource.jansi</groupId>
  82. <artifactId>jansi</artifactId>
  83. <version>2.4.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.mariadb.jdbc</groupId>
  87. <artifactId>mariadb-java-client</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-test</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-web-services</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-starter-actuator</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.micrometer</groupId>
  104. <artifactId>micrometer-registry-prometheus</artifactId>
  105. <version>1.5.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-devtools</artifactId>
  110. <scope>runtime</scope>
  111. <optional>true</optional>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.webjars</groupId>
  115. <artifactId>jquery</artifactId>
  116. <version>2.2.4</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.projectlombok</groupId>
  120. <artifactId>lombok</artifactId>
  121. <scope>compile</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-maven-plugin</artifactId>
  126. <version>2.5.6</version>
  127. </dependency>
  128. <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
  129. <dependency>
  130. <groupId>com.googlecode.json-simple</groupId>
  131. <artifactId>json-simple</artifactId>
  132. <version>1.1.1</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework.security</groupId>
  136. <artifactId>spring-security-test</artifactId>
  137. <scope>test</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.security</groupId>
  141. <artifactId>spring-security-taglibs</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>jstl</groupId>
  145. <artifactId>jstl</artifactId>
  146. <version>1.2</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.apache.commons</groupId>
  150. <artifactId>commons-text</artifactId>
  151. <version>1.9</version>
  152. </dependency>
  153. </dependencies>
  154. <build>
  155. <plugins>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. <!--<version>2.5.5</version>-->
  160. <configuration>
  161. <includeSystemScope>true</includeSystemScope>
  162. <excludes>
  163. <exclude>
  164. <groupId>org.projectlombok</groupId>
  165. <artifactId>lombok</artifactId>
  166. </exclude>
  167. </excludes>
  168. </configuration>
  169. </plugin>
  170. </plugins>
  171. </build>
  172. </project>