powerjob-remote-impl-http-4.3.3.pom 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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>powerjob-remote</artifactId>
  7. <groupId>tech.powerjob</groupId>
  8. <version>4.3.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>powerjob-remote-impl-http</artifactId>
  12. <version>4.3.3</version>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <vertx.version>4.3.7</vertx.version>
  18. <powerjob-remote-framework.version>4.3.3</powerjob-remote-framework.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>tech.powerjob</groupId>
  23. <artifactId>powerjob-remote-framework</artifactId>
  24. <version>${powerjob-remote-framework.version}</version>
  25. </dependency>
  26. <!-- https://mvnrepository.com/artifact/io.vertx/vertx-core -->
  27. <dependency>
  28. <groupId>io.vertx</groupId>
  29. <artifactId>vertx-core</artifactId>
  30. <version>${vertx.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.vertx</groupId>
  34. <artifactId>vertx-web</artifactId>
  35. <version>${vertx.version}</version>
  36. </dependency>
  37. </dependencies>
  38. </project>