You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

147 lines
4.2 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  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.qingqinkj.xm</groupId>
  6. <artifactId>xm-server</artifactId>
  7. <packaging>pom</packaging>
  8. <name>唛盟云-项目管理系统</name>
  9. <description>唛盟云-项目管理系统</description>
  10. <parent>
  11. <groupId>com.qingqinkj.mdp</groupId>
  12. <artifactId>mdp-products</artifactId>
  13. <version>M.1.0.0-RELEASE</version>
  14. </parent>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. <skipTests>true</skipTests>
  19. <docker.host>http://192.168.3.101:2375</docker.host>
  20. <docker.maven.plugin.version>1.2.2</docker.maven.plugin.version>
  21. </properties>
  22. <modules>
  23. <module>xm-core</module>
  24. <module>xm-starter</module>
  25. </modules>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.qingqinkj.xm</groupId>
  30. <artifactId>xm-core</artifactId>
  31. <version>${mdp.version}</version>
  32. </dependency>
  33. </dependencies>
  34. </dependencyManagement>
  35. <dependencies>
  36. <dependency>
  37. <groupId>com.qingqinkj.mdp</groupId>
  38. <artifactId>mdp-utils</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.qingqinkj.mdp</groupId>
  42. <artifactId>mdp-micro-client</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.qingqinkj.mdp</groupId>
  46. <artifactId>mdp-msg-client</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.qingqinkj.mdp</groupId>
  50. <artifactId>mdp-core</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.qingqinkj.mdp</groupId>
  54. <artifactId>mdp-safe-common</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.qingqinkj.mdp</groupId>
  58. <artifactId>mdp-common</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.qingqinkj.mdp</groupId>
  62. <artifactId>mdp-audit-base</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.qingqinkj.mdp</groupId>
  66. <artifactId>mdp-tomcat-conf</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>net.coobird</groupId>
  70. <artifactId>thumbnailator</artifactId>
  71. <version>0.4.8</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.poi</groupId>
  75. <artifactId>poi</artifactId>
  76. <version>3.17</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.poi</groupId>
  80. <artifactId>poi-ooxml</artifactId>
  81. <version>3.17</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.poi</groupId>
  85. <artifactId>poi-ooxml-schemas</artifactId>
  86. <version>3.17</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>easyexcel</artifactId>
  91. <version>2.1.1</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.jsoup</groupId>
  95. <artifactId>jsoup</artifactId>
  96. <version>1.11.3</version>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <pluginManagement>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-maven-plugin</artifactId>
  105. <executions>
  106. <execution>
  107. <goals>
  108. <goal>repackage</goal>
  109. </goals>
  110. </execution>
  111. </executions>
  112. </plugin>
  113. <plugin>
  114. <groupId>com.spotify</groupId>
  115. <artifactId>docker-maven-plugin</artifactId>
  116. <version>${docker.maven.plugin.version}</version>
  117. <!--<executions>-->
  118. <!--<execution>-->
  119. <!--<id>build-image</id>-->
  120. <!--<phase>package</phase>-->
  121. <!--<goals>-->
  122. <!--<goal>build</goal>-->
  123. <!--</goals>-->
  124. <!--</execution>-->
  125. <!--</executions>-->
  126. <configuration>
  127. <imageName>mmcloud/${project.artifactId}:${project.version}</imageName>
  128. <dockerHost>${docker.host}</dockerHost>
  129. <baseImage>java:8</baseImage>
  130. <entryPoint>["java", "-jar", "-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]
  131. </entryPoint>
  132. <resources>
  133. <resource>
  134. <targetPath>/</targetPath>
  135. <directory>${project.build.directory}</directory>
  136. <include>${project.build.finalName}.jar</include>
  137. </resource>
  138. </resources>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </pluginManagement>
  143. </build>
  144. </project>