pom.xml 8.4 KB

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