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.

46 lines
1.6 KiB

5 years ago
5 years ago
5 years ago
2 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>xm-bootstrap 唛盟云-项目管理系统服务端单体应用启动器</name>
  8. <parent>
  9. <groupId>com.xm</groupId>
  10. <artifactId>xm-backend</artifactId>
  11. <version>2.0.0-RELEASE</version>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.mdp</groupId>
  16. <artifactId>mdp-boot-starter</artifactId>
  17. <version>${mdp.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.xm</groupId>
  21. <artifactId>xm-core</artifactId>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <plugins>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-deploy-plugin</artifactId>
  29. <configuration>
  30. <skip>true</skip>
  31. </configuration>
  32. </plugin>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. <executions>
  37. <execution>
  38. <goals>
  39. <goal>repackage</goal>
  40. </goals>
  41. </execution>
  42. </executions>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. <description>唛盟云-项目管理系统微服务启动器</description>
  47. </project>