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
1.8 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 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>mdp-lcode-cloud-bootstrap</artifactId>
  6. <packaging>jar</packaging>
  7. <name>mdp-lcode-cloud-bootstrap 低代码云启动器</name>
  8. <parent>
  9. <groupId>com.mdp</groupId>
  10. <artifactId>mdp-lcode-backend</artifactId>
  11. <version>2.0.0-RELEASE</version>
  12. </parent>
  13. <dependencies>
  14. <!-- mdp-cloud-starter ,mdp-oauth2-client-cloud 必须放在业务包之上优先加载 -->
  15. <dependency>
  16. <groupId>com.mdp</groupId>
  17. <artifactId>mdp-cloud-starter</artifactId>
  18. <version>${mdp.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.mdp</groupId>
  22. <artifactId>mdp-oauth2-client-cloud</artifactId>
  23. <version>${mdp.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.mdp</groupId>
  27. <artifactId>mdp-lcode</artifactId>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-deploy-plugin</artifactId>
  35. <configuration>
  36. <skip>true</skip>
  37. </configuration>
  38. </plugin>
  39. <!-- -->
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. <executions>
  44. <execution>
  45. <goals>
  46. <goal>repackage</goal>
  47. </goals>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. <description>低代码云环境启动器</description>
  54. </project>