pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.com.qmth</groupId>
  7. <artifactId>stmms-ms-parent</artifactId>
  8. <version>${project.version}</version>
  9. <modules>
  10. <module>stmms-ms-core</module>
  11. <module>stmms-ms-main</module>
  12. <module>stmms-ms-log</module>
  13. <module>stmms-ms-marking</module>
  14. <module>stmms-ms-admin</module>
  15. <module>stmms-ms-commons</module>
  16. <module>stmms-ms-accesscontrol</module>
  17. <module>stmms-ms-collect</module>
  18. </modules>
  19. <packaging>pom</packaging>
  20. <name>stmms-ms</name>
  21. <parent>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-parent</artifactId>
  24. <version>1.4.0.RELEASE</version>
  25. </parent>
  26. <properties>
  27. <!-- non-dependencies -->
  28. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29. <project.version>3.1.2</project.version>
  30. <java.version>1.8</java.version>
  31. <thymeleaf.version>3.0.0.RELEASE</thymeleaf.version>
  32. <thymeleaf-layout-dialect.version>2.0.0</thymeleaf-layout-dialect.version>
  33. <mysql.version>8.0.29</mysql.version>
  34. <poi.version>3.8</poi.version>
  35. <!-- 图片压缩 -->
  36. <thumbnailator.version>0.4.8</thumbnailator.version>
  37. <!-- maven plugins -->
  38. <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
  39. <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
  40. </properties>
  41. <dependencyManagement>
  42. <dependencies>
  43. <!--modules -->
  44. <dependency>
  45. <groupId>cn.com.qmth</groupId>
  46. <artifactId>stmms-ms-core</artifactId>
  47. <version>${project.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.com.qmth</groupId>
  51. <artifactId>stmms-ms-commons</artifactId>
  52. <version>${project.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>cn.com.qmth</groupId>
  56. <artifactId>stmms-ms-accesscontrol</artifactId>
  57. <version>${project.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>cn.com.qmth</groupId>
  61. <artifactId>stmms-ms-admin</artifactId>
  62. <version>${project.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>cn.com.qmth</groupId>
  66. <artifactId>stmms-ms-marking</artifactId>
  67. <version>${project.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>cn.com.qmth</groupId>
  71. <artifactId>stmms-ms-collect</artifactId>
  72. <version>${project.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>cn.com.qmth</groupId>
  76. <artifactId>stmms-ms-log</artifactId>
  77. <version>${project.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>mysql</groupId>
  81. <artifactId>mysql-connector-java</artifactId>
  82. <version>${mysql.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.poi</groupId>
  86. <artifactId>poi-ooxml</artifactId>
  87. <version>${poi.version}</version>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/net.sf.json-lib/json-lib -->
  90. <dependency>
  91. <groupId>net.sf.json-lib</groupId>
  92. <artifactId>json-lib</artifactId>
  93. <version>2.4</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>net.coobird</groupId>
  97. <artifactId>thumbnailator</artifactId>
  98. <version>${thumbnailator.version}</version>
  99. </dependency>
  100. </dependencies>
  101. </dependencyManagement>
  102. <build>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-surefire-plugin</artifactId>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-compiler-plugin</artifactId>
  111. </plugin>
  112. </plugins>
  113. <pluginManagement>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-surefire-plugin</artifactId>
  118. <version>${maven-surefire-plugin.version}</version>
  119. <configuration>
  120. <testFailureIgnore>true</testFailureIgnore>
  121. </configuration>
  122. </plugin>
  123. <plugin>
  124. <groupId>org.apache.maven.plugins</groupId>
  125. <artifactId>maven-compiler-plugin</artifactId>
  126. <version>${maven-compiler-plugin.version}</version>
  127. <configuration>
  128. <source>1.8</source>
  129. <target>1.8</target>
  130. <compilerArgument>-proc:none</compilerArgument>
  131. </configuration>
  132. </plugin>
  133. </plugins>
  134. </pluginManagement>
  135. </build>
  136. </project>