pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.keao.edu</groupId>
  5. <artifactId>edu-saas</artifactId>
  6. <version>1.0</version>
  7. <packaging>pom</packaging>
  8. <name>edu-saas</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <maven.compiler.source>1.8</maven.compiler.source>
  14. <maven.compiler.target>1.8</maven.compiler.target>
  15. <spring-boot.version>2.1.6.RELEASE</spring-boot.version>
  16. <spring-cloud.version>Greenwich.RELEASE</spring-cloud.version>
  17. <zipkin.version>2.12.2</zipkin.version>
  18. <google.zxing.version>3.4.0</google.zxing.version>
  19. </properties>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.keao.edu</groupId>
  24. <artifactId>edu-common</artifactId>
  25. <version>1.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.keao.edu</groupId>
  29. <artifactId>edu-auth-api</artifactId>
  30. <version>1.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.keao.edu</groupId>
  34. <artifactId>edu-user-client-api</artifactId>
  35. <version>1.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.keao.edu</groupId>
  39. <artifactId>edu-im-api</artifactId>
  40. <version>1.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.keao.edu</groupId>
  44. <artifactId>edu-util</artifactId>
  45. <version>1.0</version>
  46. </dependency>
  47. <!--֧��Spring Boot 2.1.X -->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-dependencies</artifactId>
  51. <version>${spring-boot.version}</version>
  52. <type>pom</type>
  53. <scope>import</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.cloud</groupId>
  57. <artifactId>spring-cloud-dependencies</artifactId>
  58. <version>${spring-cloud.version}</version>
  59. <type>pom</type>
  60. <scope>import</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.cloud</groupId>
  64. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  65. <version>0.9.0.RELEASE</version>
  66. <exclusions>
  67. <exclusion>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>fastjson</artifactId>
  70. </exclusion>
  71. <exclusion>
  72. <groupId>commons-io</groupId>
  73. <artifactId>commons-io</artifactId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <!-- swagger-spring-boot -->
  78. <dependency>
  79. <groupId>com.spring4all</groupId>
  80. <artifactId>swagger-spring-boot-starter</artifactId>
  81. <version>1.9.0.RELEASE</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.xiaoymin</groupId>
  85. <artifactId>swagger-bootstrap-ui</artifactId>
  86. <version>1.9.5</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>druid-spring-boot-starter</artifactId>
  91. <version>1.1.10</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.mybatis.spring.boot</groupId>
  95. <artifactId>mybatis-spring-boot-starter</artifactId>
  96. <version>1.3.2</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.baomidou</groupId>
  100. <artifactId>mybatis-plus</artifactId>
  101. <version>3.3.1.tmp</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.social</groupId>
  105. <artifactId>spring-social-security</artifactId>
  106. <version>1.1.6.RELEASE</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>commons-beanutils</groupId>
  110. <artifactId>commons-beanutils</artifactId>
  111. <version>1.9.2</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.google.zxing</groupId>
  115. <artifactId>core</artifactId>
  116. <version>${google.zxing.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.google.zxing</groupId>
  120. <artifactId>javase</artifactId>
  121. <version>${google.zxing.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>javax.servlet</groupId>
  125. <artifactId>javax.servlet-api</artifactId>
  126. <version>4.0.1</version>
  127. <scope>provided</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.alibaba</groupId>
  131. <artifactId>fastjson</artifactId>
  132. <version>1.2.70</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>commons-io</groupId>
  136. <artifactId>commons-io</artifactId>
  137. <version>2.7</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>com.vdurmont</groupId>
  141. <artifactId>emoji-java</artifactId>
  142. <version>5.1.1</version>
  143. </dependency>
  144. </dependencies>
  145. </dependencyManagement>
  146. <repositories>
  147. <repository>
  148. <id>spring-milestones</id>
  149. <name>Spring Milestones</name>
  150. <url>https://repo.spring.io/libs-milestone</url>
  151. <snapshots>
  152. <enabled>false</enabled>
  153. </snapshots>
  154. </repository>
  155. <repository>
  156. <id>sonatype-nexus-snapshots</id>
  157. <name>Sonatype Nexus Snapshots</name>
  158. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  159. <snapshots>
  160. <enabled>true</enabled>
  161. </snapshots>
  162. <releases>
  163. <enabled>false</enabled>
  164. </releases>
  165. </repository>
  166. </repositories>
  167. <pluginRepositories>
  168. <pluginRepository>
  169. <id>repository.spring.release</id>
  170. <name>Spring GA Repository</name>
  171. <url>https://repo.spring.io/plugins-release/</url>
  172. </pluginRepository>
  173. <pluginRepository>
  174. <id>jcenter-snapshots</id>
  175. <name>jcenter</name>
  176. <url>http://oss.jfrog.org/artifactory/oss-snapshot-local/</url>
  177. </pluginRepository>
  178. <pluginRepository>
  179. <id>jcenter-releases</id>
  180. <name>jcenter</name>
  181. <url>http://jcenter.bintray.com</url>
  182. <snapshots>
  183. <enabled>false</enabled>
  184. </snapshots>
  185. </pluginRepository>
  186. </pluginRepositories>
  187. <build>
  188. <finalName>${project.name}</finalName>
  189. <resources>
  190. <resource>
  191. <directory>src/main/resources</directory>
  192. <filtering>true</filtering>
  193. <excludes>
  194. <exclude>**/*.ttf</exclude>
  195. <exclude>**/*.ttc</exclude>
  196. </excludes>
  197. </resource>
  198. <resource>
  199. <directory>src/main/resources</directory>
  200. <filtering>false</filtering>
  201. <includes>
  202. <include>**/*.ttf</include>
  203. <include>**/*.ttc</include>
  204. </includes>
  205. </resource>
  206. </resources>
  207. <pluginManagement>
  208. <plugins>
  209. <plugin>
  210. <groupId>org.springframework.boot</groupId>
  211. <artifactId>spring-boot-maven-plugin</artifactId>
  212. <version>${spring-boot.version}</version>
  213. <configuration>
  214. <finalName>${project.build.finalName}</finalName>
  215. <includeSystemScope>true</includeSystemScope>
  216. </configuration>
  217. <executions>
  218. <execution>
  219. <goals>
  220. <goal>repackage</goal>
  221. </goals>
  222. </execution>
  223. </executions>
  224. </plugin>
  225. </plugins>
  226. </pluginManagement>
  227. <plugins>
  228. <plugin>
  229. <artifactId>maven-compiler-plugin</artifactId>
  230. <version>3.8.0</version>
  231. <configuration>
  232. <target>${maven.compiler.target}</target>
  233. <source>${maven.compiler.source}</source>
  234. <encoding>${project.build.sourceEncoding}</encoding>
  235. </configuration>
  236. </plugin>
  237. <plugin>
  238. <groupId>pl.project13.maven</groupId>
  239. <artifactId>git-commit-id-plugin</artifactId>
  240. <version>2.2.5</version>
  241. </plugin>
  242. <plugin>
  243. <groupId>org.apache.maven.plugins</groupId>
  244. <artifactId>maven-resources-plugin</artifactId>
  245. <configuration>
  246. <encoding>UTF-8</encoding>
  247. <!-- 过滤后缀为pem、pfx的证书文件 -->
  248. <nonFilteredFileExtensions>
  249. <nonFilteredFileExtension>cer</nonFilteredFileExtension>
  250. <nonFilteredFileExtension>pem</nonFilteredFileExtension>
  251. <nonFilteredFileExtension>pfx</nonFilteredFileExtension>
  252. <nonFilteredFileExtension>ttc</nonFilteredFileExtension>
  253. <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
  254. </nonFilteredFileExtensions>
  255. </configuration>
  256. </plugin>
  257. </plugins>
  258. </build>
  259. <modules>
  260. <module>edu-eureka</module>
  261. <module>edu-zuul</module>
  262. <module>edu-common</module>
  263. <module>edu-util</module>
  264. <module>edu-task</module>
  265. <module>edu-cms</module>
  266. <module>edu-user</module>
  267. <module>edu-auth</module>
  268. <module>edu-im</module>
  269. <module>edu-thirdparty</module>
  270. <module>edu-datasource</module>
  271. </modules>
  272. </project>