pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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-cloud</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-auth</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. <exclusions>
  18. <exclusion>
  19. <artifactId>spring-boot-starter-tomcat</artifactId>
  20. <groupId>org.springframework.boot</groupId>
  21. </exclusion>
  22. </exclusions>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-undertow</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-starter-config</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.datax</groupId>
  34. <artifactId>datax-common-core</artifactId>
  35. <version>2.0.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.datax</groupId>
  39. <artifactId>datax-common-mybatis</artifactId>
  40. <version>2.0.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>cn.datax</groupId>
  44. <artifactId>datax-common-security</artifactId>
  45. <version>2.0.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.datax</groupId>
  49. <artifactId>datax-common-redis</artifactId>
  50. <version>2.0.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>cn.datax</groupId>
  54. <artifactId>system-service-api</artifactId>
  55. <version>2.0.0</version>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>