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

117 lines
3.8 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 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. <!-- 核心模块-->
  29. <dependency>
  30. <groupId>com.inscloudtech</groupId>
  31. <artifactId>tp-framework</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.inscloudtech</groupId>
  35. <artifactId>tp-system</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.inscloudtech</groupId>
  39. <artifactId>tp-oss</artifactId>
  40. </dependency>
  41. <!-- 代码生成-->
  42. <dependency>
  43. <groupId>com.inscloudtech</groupId>
  44. <artifactId>tp-generator</artifactId>
  45. </dependency>
  46. <!-- demo模块 -->
  47. <dependency>
  48. <groupId>com.inscloudtech</groupId>
  49. <artifactId>tp-demo</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.inscloudtech</groupId>
  53. <artifactId>tp-functional</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-test</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <!-- skywalking 整合 logback -->
  61. <!-- <dependency>-->
  62. <!-- <groupId>org.apache.skywalking</groupId>-->
  63. <!-- <artifactId>apm-toolkit-logback-1.x</artifactId>-->
  64. <!-- <version>${与你的agent探针版本保持一致}</version>-->
  65. <!-- </dependency>-->
  66. <!-- <dependency>-->
  67. <!-- <groupId>org.apache.skywalking</groupId>-->
  68. <!-- <artifactId>apm-toolkit-trace</artifactId>-->
  69. <!-- <version>${与你的agent探针版本保持一致}</version>-->
  70. <!-- </dependency>-->
  71. </dependencies>
  72. <build>
  73. <finalName>${project.artifactId}</finalName>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. <version>${spring-boot.version}</version>
  79. <configuration>
  80. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  81. </configuration>
  82. <executions>
  83. <execution>
  84. <goals>
  85. <goal>repackage</goal>
  86. </goals>
  87. </execution>
  88. </executions>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-war-plugin</artifactId>
  93. <version>3.2.2</version>
  94. <configuration>
  95. <failOnMissingWebXml>false</failOnMissingWebXml>
  96. <warName>${project.artifactId}</warName>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>