pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>seecoder-portal</artifactId>
  7. <groupId>cn.seecoder</groupId>
  8. <version>0.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>seecoder-portal-server</artifactId>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. <finalName>${project.artifactId}-${project.version}</finalName>
  15. </properties>
  16. <build>
  17. <finalName>${finalName}</finalName>
  18. <plugins>
  19. <plugin>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-maven-plugin</artifactId>
  22. <version>2.4.3</version>
  23. <configuration>
  24. <mainClass>cn.seecoder.seecoderportalserver.SeecoderPortalServerApplication</mainClass>
  25. </configuration>
  26. <executions>
  27. <execution>
  28. <goals>
  29. <goal>repackage</goal>
  30. </goals>
  31. </execution>
  32. </executions>
  33. </plugin>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-compiler-plugin</artifactId>
  37. <version>3.8.1</version>
  38. <configuration>
  39. <source>${maven.compiler.source}</source> <!-- depending on your project -->
  40. <target>${maven.compiler.target}</target> <!-- depending on your project -->
  41. <annotationProcessorPaths>
  42. <path>
  43. <groupId>org.mapstruct</groupId>
  44. <artifactId>mapstruct-processor</artifactId>
  45. <version>${org.mapstruct.version}</version>
  46. </path>
  47. <!-- other annotation processors -->
  48. <path>
  49. <groupId>org.hibernate</groupId>
  50. <artifactId>hibernate-jpamodelgen</artifactId>
  51. <version>5.4.28.Final</version>
  52. </path>
  53. </annotationProcessorPaths>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. <dependencies>
  59. <dependency>
  60. <groupId>cn.seecoder</groupId>
  61. <artifactId>seecoder-portal-common</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-data-jpa</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-validation</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-devtools</artifactId>
  78. <scope>runtime</scope>
  79. <optional>true</optional>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.postgresql</groupId>
  83. <artifactId>postgresql</artifactId>
  84. <scope>runtime</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-test</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-security</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>io.jsonwebtoken</groupId>
  97. <artifactId>jjwt-api</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>io.jsonwebtoken</groupId>
  101. <artifactId>jjwt-impl</artifactId>
  102. <scope>runtime</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>io.jsonwebtoken</groupId>
  106. <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred -->
  107. <scope>runtime</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.aliyun</groupId>
  111. <artifactId>aliyun-java-sdk-core</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.github.ben-manes.caffeine</groupId>
  115. <artifactId>caffeine</artifactId>
  116. <version>2.8.1</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.aliyun.oss</groupId>
  120. <artifactId>aliyun-sdk-oss</artifactId>
  121. <version>3.10.2</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-configuration-processor</artifactId>
  126. <optional>true</optional>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.nju.edu</groupId>
  130. <artifactId>PaasMonitor-client</artifactId>
  131. <version>0.1.1</version>
  132. </dependency>
  133. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  134. <dependency>
  135. <groupId>com.baomidou</groupId>
  136. <artifactId>mybatis-plus-boot-starter</artifactId>
  137. <version>3.4.2</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.httpcomponents</groupId>
  141. <artifactId>httpmime</artifactId>
  142. <version>4.5.13</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.postgresql</groupId>
  146. <artifactId>postgresql</artifactId>
  147. <version>42.3.6</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>commons-io</groupId>
  151. <artifactId>commons-io</artifactId>
  152. <version>2.4</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.apache.poi</groupId>
  156. <artifactId>poi-scratchpad</artifactId>
  157. <version>3.8</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.poi</groupId>
  161. <artifactId>poi-scratchpad</artifactId>
  162. <version>4.1.2</version>
  163. </dependency>
  164. </dependencies>
  165. </project>