pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to Apache Software Foundation (ASF) under one or more contributor
  4. ~ license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright
  6. ~ ownership. Apache Software Foundation (ASF) licenses this file to you under
  7. ~ the Apache License, Version 2.0 (the "License"); you may
  8. ~ not use this file except in compliance with the License.
  9. ~ You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing,
  14. ~ software distributed under the License is distributed on an
  15. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. ~ KIND, either express or implied. See the License for the
  17. ~ specific language governing permissions and limitations
  18. ~ under the License.
  19. -->
  20. <project xmlns="http://maven.apache.org/POM/4.0.0"
  21. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  22. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  23. <parent>
  24. <artifactId>dolphinscheduler-api-test</artifactId>
  25. <groupId>org.apache.dolphinscheduler</groupId>
  26. <version>1.0-SNAPSHOT</version>
  27. </parent>
  28. <modelVersion>4.0.0</modelVersion>
  29. <artifactId>dolphinscheduler-api-test-case</artifactId>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.apache.dolphinscheduler</groupId>
  33. <artifactId>dolphinscheduler-api-test-core</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.dolphinscheduler</groupId>
  38. <artifactId>dolphinscheduler-dao</artifactId>
  39. <version>dev-SNAPSHOT</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.dolphinscheduler</groupId>
  43. <artifactId>dolphinscheduler-api</artifactId>
  44. <version>dev-SNAPSHOT</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.httpcomponents</groupId>
  48. <artifactId>httpclient</artifactId>
  49. <version>4.5.13</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.httpcomponents</groupId>
  53. <artifactId>httpmime</artifactId>
  54. <version>4.5.13</version>
  55. </dependency>
  56. </dependencies>
  57. </project>