pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <project xmlns="http://maven.apache.org/POM/4.0.0"
  19. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  20. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  21. <parent>
  22. <artifactId>dolphinscheduler-task-plugin</artifactId>
  23. <groupId>org.apache.dolphinscheduler</groupId>
  24. <version>2.0.0-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>dolphinscheduler-task-pigeon</artifactId>
  28. <packaging>dolphinscheduler-plugin</packaging>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.apache.dolphinscheduler</groupId>
  32. <artifactId>dolphinscheduler-task-api</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.dolphinscheduler</groupId>
  37. <artifactId>dolphinscheduler-spi</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.slf4j</groupId>
  42. <artifactId>slf4j-api</artifactId>
  43. </dependency>
  44. <!--https://github.com/dreamhead/moco/blob/master/moco-doc/usage.md#socket-->
  45. <dependency>
  46. <groupId>com.github.dreamhead</groupId>
  47. <artifactId>moco-core</artifactId>
  48. <version>1.2.0</version>
  49. <scope>test</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.github.dreamhead</groupId>
  53. <artifactId>moco-runner</artifactId>
  54. <version>1.2.0</version>
  55. <scope>test</scope>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>commons-cli</groupId>
  59. <artifactId>commons-cli</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <!-- <dependency>-->
  64. <!-- <groupId>org.asynchttpclient</groupId>-->
  65. <!-- <artifactId>async-http-client</artifactId>-->
  66. <!-- <version>2.12.3</version>-->
  67. <!-- </dependency>-->
  68. <dependency>
  69. <groupId>org.jacoco</groupId>
  70. <artifactId>org.jacoco.agent</artifactId>
  71. <classifier>runtime</classifier>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.java-websocket</groupId>
  76. <artifactId>Java-WebSocket</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.apache.httpcomponents</groupId>
  80. <artifactId>httpclient</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.httpcomponents</groupId>
  84. <artifactId>httpcore</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.mockito</groupId>
  88. <artifactId>mockito-core</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.powermock</groupId>
  92. <artifactId>powermock-api-mockito2</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>junit</groupId>
  96. <artifactId>junit</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. </dependencies>
  100. <build>
  101. <finalName>dolphinscheduler-task-pigeon-${project.version}</finalName>
  102. </build>
  103. </project>