pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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>datax-tools</artifactId>
  7. <groupId>cn.datax</groupId>
  8. <version>2.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>2.0.0</version>
  12. <artifactId>datax-tool-monitor</artifactId>
  13. <dependencies>
  14. <!--监控服务端 -->
  15. <dependency>
  16. <groupId>de.codecentric</groupId>
  17. <artifactId>spring-boot-admin-starter-server</artifactId>
  18. <version>${spring-boot-admin.version}</version>
  19. </dependency>
  20. <!--web 模块 -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <artifactId>spring-boot-starter-tomcat</artifactId>
  27. <groupId>org.springframework.boot</groupId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-undertow</artifactId>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. </project>