pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.unis.flowable</groupId>
  9. <artifactId>flowable-service</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>flowable-client</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>io.github.openfeign.form</groupId>
  16. <artifactId>feign-form-spring</artifactId>
  17. <version>3.2.2</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>io.github.openfeign.form</groupId>
  21. <artifactId>feign-form</artifactId>
  22. <version>3.2.2</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-openfeign</artifactId>
  27. <version>2.0.0.RELEASE</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.unis.flowable</groupId>
  31. <artifactId>flowable-common</artifactId>
  32. <version>0.0.1-SNAPSHOT</version>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <finalName>flowable-client</finalName>
  37. </build>
  38. </project>