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.

150 lines
4.4 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
  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. <version>${mdp.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.qingqinkj.mdp</groupId>
  43. <artifactId>mdp-core</artifactId>
  44. <version>${mdp.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.qingqinkj.mdp</groupId>
  48. <artifactId>mdp-safe-common</artifactId>
  49. <version>${mdp.version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.qingqinkj.mdp</groupId>
  53. <artifactId>mdp-common</artifactId>
  54. <version>${mdp.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.qingqinkj.mdp</groupId>
  58. <artifactId>mdp-audit-base</artifactId>
  59. <version>${mdp.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.qingqinkj.mdp</groupId>
  63. <artifactId>mdp-tomcat-conf</artifactId>
  64. <version>${mdp.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.qingqinkj.mdp</groupId>
  68. <artifactId>mdp-form</artifactId>
  69. <version>${mdp.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>net.coobird</groupId>
  73. <artifactId>thumbnailator</artifactId>
  74. <version>0.4.8</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.poi</groupId>
  78. <artifactId>poi</artifactId>
  79. <version>3.17</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.poi</groupId>
  83. <artifactId>poi-ooxml</artifactId>
  84. <version>3.17</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi-ooxml-schemas</artifactId>
  89. <version>3.17</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.alibaba</groupId>
  93. <artifactId>easyexcel</artifactId>
  94. <version>2.1.1</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.jsoup</groupId>
  98. <artifactId>jsoup</artifactId>
  99. <version>1.11.3</version>
  100. </dependency>
  101. </dependencies>
  102. <build>
  103. <pluginManagement>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. <executions>
  109. <execution>
  110. <goals>
  111. <goal>repackage</goal>
  112. </goals>
  113. </execution>
  114. </executions>
  115. </plugin>
  116. <plugin>
  117. <groupId>com.spotify</groupId>
  118. <artifactId>docker-maven-plugin</artifactId>
  119. <version>${docker.maven.plugin.version}</version>
  120. <!--<executions>-->
  121. <!--<execution>-->
  122. <!--<id>build-image</id>-->
  123. <!--<phase>package</phase>-->
  124. <!--<goals>-->
  125. <!--<goal>build</goal>-->
  126. <!--</goals>-->
  127. <!--</execution>-->
  128. <!--</executions>-->
  129. <configuration>
  130. <imageName>mmcloud/${project.artifactId}:${project.version}</imageName>
  131. <dockerHost>${docker.host}</dockerHost>
  132. <baseImage>java:8</baseImage>
  133. <entryPoint>["java", "-jar", "-Dspring.profiles.active=prod","/${project.build.finalName}.jar"]
  134. </entryPoint>
  135. <resources>
  136. <resource>
  137. <targetPath>/</targetPath>
  138. <directory>${project.build.directory}</directory>
  139. <include>${project.build.finalName}.jar</include>
  140. </resource>
  141. </resources>
  142. </configuration>
  143. </plugin>
  144. </plugins>
  145. </pluginManagement>
  146. </build>
  147. </project>