pom.xml 8.1 KB

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