pom.xml 7.9 KB

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