1
0

pom.xml 6.7 KB

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