pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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.3.4.RELEASE</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. <!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter -->
  44. <dependency>
  45. <groupId>org.mybatis.spring.boot</groupId>
  46. <artifactId>mybatis-spring-boot-starter</artifactId>
  47. <version>2.2.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-jdbc</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.tomcat.embed</groupId>
  55. <artifactId>tomcat-embed-jasper</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-tomcat</artifactId>
  60. <scope>provided</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-configuration-processor</artifactId>
  65. <optional>true</optional>
  66. </dependency>
  67. <dependency>
  68. <groupId>javax.servlet</groupId>
  69. <artifactId>jstl</artifactId>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-json -->
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-json</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.fusesource.jansi</groupId>
  78. <artifactId>jansi</artifactId>
  79. <version>2.4.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.mariadb.jdbc</groupId>
  83. <artifactId>mariadb-java-client</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-test</artifactId>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-web-services</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-devtools</artifactId>
  97. <scope>runtime</scope>
  98. <optional>true</optional>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.webjars</groupId>
  102. <artifactId>jquery</artifactId>
  103. <version>2.2.4</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.projectlombok</groupId>
  107. <artifactId>lombok</artifactId>
  108. <scope>compile</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-maven-plugin</artifactId>
  113. <version>2.5.6</version>
  114. </dependency>
  115. <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
  116. <dependency>
  117. <groupId>com.googlecode.json-simple</groupId>
  118. <artifactId>json-simple</artifactId>
  119. <version>1.1.1</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework.security</groupId>
  123. <artifactId>spring-security-test</artifactId>
  124. <scope>test</scope>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework.security</groupId>
  128. <artifactId>spring-security-taglibs</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>jstl</groupId>
  132. <artifactId>jstl</artifactId>
  133. <version>1.2</version>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-maven-plugin</artifactId>
  141. <!--<version>2.5.5</version>-->
  142. <configuration>
  143. <includeSystemScope>true</includeSystemScope>
  144. <excludes>
  145. <exclude>
  146. <groupId>org.projectlombok</groupId>
  147. <artifactId>lombok</artifactId>
  148. </exclude>
  149. </excludes>
  150. </configuration>
  151. </plugin>
  152. </plugins>
  153. </build>
  154. </project>