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.

57 lines
2.0 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. <artifactId>xm-bootstrap</artifactId>
  6. <packaging>jar</packaging>
  7. <name>唛盟云-项目管理系统服务端启动器</name>
  8. <parent>
  9. <groupId>com.xm</groupId>
  10. <artifactId>xm-backend</artifactId>
  11. <version>M.1.0.0-RELEASE</version>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.mdp</groupId>
  16. <artifactId>mdp-cloud-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.xm</groupId>
  20. <artifactId>xm-core</artifactId>
  21. </dependency>
  22. </dependencies>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-dependencies</artifactId>
  28. <version>${spring-cloud.version}</version>
  29. <type>pom</type>
  30. <scope>import</scope>
  31. </dependency>
  32. </dependencies>
  33. </dependencyManagement>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-maven-plugin</artifactId>
  39. <executions>
  40. <execution>
  41. <goals>
  42. <goal>repackage</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.apache.maven.plugins</groupId>
  49. <artifactId>maven-deploy-plugin</artifactId>
  50. <version>2.8.2</version>
  51. <configuration>
  52. <skip>true</skip>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. <description>唛盟云-项目管理系统微服务启动器</description>
  58. </project>