测试平台
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.

123 lines
4.0 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>test-platform-service</artifactId>
  7. <groupId>com.inscloudtech</groupId>
  8. <version>4.8.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>tp-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <optional>true</optional> <!-- 表示依赖不会传递 -->
  22. </dependency>
  23. <!-- Mysql驱动包 -->
  24. <dependency>
  25. <groupId>com.mysql</groupId>
  26. <artifactId>mysql-connector-j</artifactId>
  27. </dependency>
  28. <!-- PostgreSql -->
  29. <dependency>
  30. <groupId>org.postgresql</groupId>
  31. <artifactId>postgresql</artifactId>
  32. <version>42.6.2</version>
  33. </dependency>
  34. <!-- 核心模块-->
  35. <dependency>
  36. <groupId>com.inscloudtech</groupId>
  37. <artifactId>tp-framework</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.inscloudtech</groupId>
  41. <artifactId>tp-system</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.inscloudtech</groupId>
  45. <artifactId>tp-oss</artifactId>
  46. </dependency>
  47. <!-- 代码生成-->
  48. <dependency>
  49. <groupId>com.inscloudtech</groupId>
  50. <artifactId>tp-generator</artifactId>
  51. </dependency>
  52. <!-- demo模块 -->
  53. <!-- <dependency>-->
  54. <!-- <groupId>com.inscloudtech</groupId>-->
  55. <!-- <artifactId>tp-demo</artifactId>-->
  56. <!-- </dependency>-->
  57. <dependency>
  58. <groupId>com.inscloudtech</groupId>
  59. <artifactId>tp-functional</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <!-- skywalking 整合 logback -->
  67. <!-- <dependency>-->
  68. <!-- <groupId>org.apache.skywalking</groupId>-->
  69. <!-- <artifactId>apm-toolkit-logback-1.x</artifactId>-->
  70. <!-- <version>${与你的agent探针版本保持一致}</version>-->
  71. <!-- </dependency>-->
  72. <!-- <dependency>-->
  73. <!-- <groupId>org.apache.skywalking</groupId>-->
  74. <!-- <artifactId>apm-toolkit-trace</artifactId>-->
  75. <!-- <version>${与你的agent探针版本保持一致}</version>-->
  76. <!-- </dependency>-->
  77. </dependencies>
  78. <build>
  79. <finalName>${project.artifactId}</finalName>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-maven-plugin</artifactId>
  84. <version>${spring-boot.version}</version>
  85. <configuration>
  86. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  87. </configuration>
  88. <executions>
  89. <execution>
  90. <goals>
  91. <goal>repackage</goal>
  92. </goals>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. <plugin>
  97. <groupId>org.apache.maven.plugins</groupId>
  98. <artifactId>maven-war-plugin</artifactId>
  99. <version>3.2.2</version>
  100. <configuration>
  101. <failOnMissingWebXml>false</failOnMissingWebXml>
  102. <warName>${project.artifactId}</warName>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>