1
0

pom.xml 6.4 KB

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