pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.zjugis.cloud</groupId>
  7. <artifactId>zjugis-framework</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <artifactId>zjugis-spring-boot-starter-workflow</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <packaging>jar</packaging>
  13. <name>zjugis-spring-boot-starter-workflow</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-test</artifactId>
  22. <scope>test</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.aspectj</groupId>
  26. <artifactId>aspectjweaver</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.alibaba.fastjson2</groupId>
  30. <artifactId>fastjson2</artifactId>
  31. <version>2.0.42</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.zjugis.cloud</groupId>
  35. <artifactId>zjugis-common</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-freemarker</artifactId>
  40. <version>2.7.15</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-starter-openfeign</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.github.openfeign</groupId>
  48. <artifactId>feign-httpclient</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.zjugis.cloud</groupId>
  52. <artifactId>zjugis-spring-boot-starter-security</artifactId>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-maven-plugin</artifactId>
  60. <configuration>
  61. <image>
  62. <builder>paketobuildpacks/builder-jammy-base:latest</builder>
  63. </image>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>