pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. <artifactId>seecoder-devcloud-web</artifactId>
  6. <version>0.1.0</version>
  7. <packaging>jar</packaging>
  8. <description>Demo project for Spring Boot</description>
  9. <parent>
  10. <artifactId>seecoder-devcloud-parent</artifactId>
  11. <groupId>cn.seecoder</groupId>
  12. <version>0.1.0</version>
  13. </parent>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <spring-boot.version>2.3.4.RELEASE</spring-boot.version>
  19. <skipTests>true</skipTests>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <version>${lombok.version}</version>
  26. </dependency>
  27. <!-- Swagger -->
  28. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-boot-starter -->
  29. <!-- <dependency>-->
  30. <!-- <groupId>io.springfox</groupId>-->
  31. <!-- <artifactId>springfox-boot-starter</artifactId>-->
  32. <!-- <version>3.0.0</version>-->
  33. <!-- </dependency>-->
  34. <dependency>
  35. <groupId>net.sf.json-lib</groupId>
  36. <artifactId>json-lib</artifactId>
  37. <version>2.4</version>
  38. <classifier>jdk15</classifier>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-logging</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.springfox</groupId>
  50. <artifactId>springfox-swagger2</artifactId>
  51. <version>2.5.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.springfox</groupId>
  55. <artifactId>springfox-swagger-ui</artifactId>
  56. <version>2.5.0</version>
  57. </dependency>
  58. <!-- <dependency>-->
  59. <!-- <groupId>cn.seecoder</groupId>-->
  60. <!-- <artifactId>seecoder-devcloud-query</artifactId>-->
  61. <!-- <version>0.1.0</version>-->
  62. <!-- </dependency>-->
  63. <dependency>
  64. <groupId>cn.seecoder</groupId>
  65. <artifactId>seecoder-devcloud-api</artifactId>
  66. <version>0.1.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>cn.seecoder</groupId>
  70. <artifactId>seecoder-devcloud-common</artifactId>
  71. <version>0.1.0</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-jdbc</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-aop</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>mysql</groupId>
  87. <artifactId>mysql-connector-java</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-web</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-mail</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-test</artifactId>
  100. <scope>test</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.mybatis.spring.boot</groupId>
  104. <artifactId>mybatis-spring-boot-starter</artifactId>
  105. <version>2.1.4</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.mybatis.spring.boot</groupId>
  109. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  110. <version>2.1.4</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-starter-security</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.security</groupId>
  118. <artifactId>spring-security-test</artifactId>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.nju.edu</groupId>
  123. <artifactId>seecoder-gitlab-client</artifactId>
  124. </dependency>
  125. </dependencies>
  126. <dependencyManagement>
  127. <dependencies>
  128. <dependency>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-dependencies</artifactId>
  131. <version>${spring-boot.version}</version>
  132. <type>pom</type>
  133. <scope>import</scope>
  134. </dependency>
  135. </dependencies>
  136. </dependencyManagement>
  137. <repositories>
  138. <!-- ... possibly other repository elements ... -->
  139. <repository>
  140. <id>spring-snapshot</id>
  141. <name>Spring Snapshot Repository</name>
  142. <url>https://repo.spring.io/snapshot</url>
  143. </repository>
  144. </repositories>
  145. <build>
  146. <plugins>
  147. <plugin>
  148. <groupId>org.apache.maven.plugins</groupId>
  149. <artifactId>maven-compiler-plugin</artifactId>
  150. <version>3.8.1</version>
  151. <configuration>
  152. <source>1.8</source>
  153. <target>1.8</target>
  154. <encoding>UTF-8</encoding>
  155. <skip>true</skip>
  156. </configuration>
  157. </plugin>
  158. <plugin>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-maven-plugin</artifactId>
  161. <version>2.3.4.RELEASE</version>
  162. <configuration>
  163. <mainClass>cn.seecoder.web.DevcloudWebApplication</mainClass>
  164. </configuration>
  165. <executions>
  166. <execution>
  167. <id>repackage</id>
  168. <goals>
  169. <goal>repackage</goal>
  170. </goals>
  171. </execution>
  172. </executions>
  173. </plugin>
  174. </plugins>
  175. </build>
  176. </project>