pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. <modelVersion>4.0.0</modelVersion>
  6. <packaging>jar</packaging>
  7. <artifactId>liteflow-solon-plugin</artifactId>
  8. <description>liteflow solon plugin</description>
  9. <parent>
  10. <artifactId>liteflow</artifactId>
  11. <groupId>com.yomahub</groupId>
  12. <version>${revision}</version>
  13. <relativePath>../pom.xml</relativePath>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.noear</groupId>
  18. <artifactId>solon</artifactId>
  19. <version>${solon.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.yomahub</groupId>
  23. <artifactId>liteflow-core</artifactId>
  24. <version>${revision}</version>
  25. </dependency>
  26. </dependencies>
  27. </project>