pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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-spring-boot-starter</artifactId>
  8. <description>liteflow springboot starter</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>com.yomahub</groupId>
  18. <artifactId>liteflow-spring</artifactId>
  19. <version>${revision}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-autoconfigure</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-configuration-processor</artifactId>
  28. </dependency>
  29. </dependencies>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. <version>${springboot.version}</version>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. </project>