1
0

pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. <!-- END Swagger -->
  56. <dependency>
  57. <groupId>cn.seecoder</groupId>
  58. <artifactId>seecoder-devcloud-core</artifactId>
  59. <version>0.1.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-jdbc</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-aop</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>mysql</groupId>
  75. <artifactId>mysql-connector-java</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-web</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-mail</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.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>com.nju.edu</groupId>
  111. <artifactId>seecoder-gitlab-client</artifactId>
  112. <version>0.1.0</version>
  113. </dependency>
  114. </dependencies>
  115. <dependencyManagement>
  116. <dependencies>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-dependencies</artifactId>
  120. <version>${spring-boot.version}</version>
  121. <type>pom</type>
  122. <scope>import</scope>
  123. </dependency>
  124. </dependencies>
  125. </dependencyManagement>
  126. <repositories>
  127. <!-- ... possibly other repository elements ... -->
  128. <repository>
  129. <id>spring-snapshot</id>
  130. <name>Spring Snapshot Repository</name>
  131. <url>https://repo.spring.io/snapshot</url>
  132. </repository>
  133. </repositories>
  134. <build>
  135. <plugins>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-compiler-plugin</artifactId>
  139. <version>3.8.1</version>
  140. <configuration>
  141. <source>1.8</source>
  142. <target>1.8</target>
  143. <encoding>UTF-8</encoding>
  144. <skip>true</skip>
  145. </configuration>
  146. </plugin>
  147. <plugin>
  148. <groupId>org.springframework.boot</groupId>
  149. <artifactId>spring-boot-maven-plugin</artifactId>
  150. <version>2.3.4.RELEASE</version>
  151. <configuration>
  152. <mainClass>seecoder.devcloud.web.DevcloudWebApplication</mainClass>
  153. </configuration>
  154. <executions>
  155. <execution>
  156. <id>repackage</id>
  157. <goals>
  158. <goal>repackage</goal>
  159. </goals>
  160. </execution>
  161. </executions>
  162. </plugin>
  163. </plugins>
  164. </build>
  165. </project>