pom.xml 5.9 KB

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