pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>hsweb-system-workflow</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>3.0.0-RC-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-system-workflow-starter</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.hswebframework.web</groupId>
  15. <artifactId>hsweb-system-workflow-local</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter</artifactId>
  21. </dependency>
  22. <!-- test -->
  23. <dependency>
  24. <groupId>ch.qos.logback</groupId>
  25. <artifactId>logback-classic</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>mysql</groupId>
  30. <artifactId>mysql-connector-java</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.h2database</groupId>
  35. <artifactId>h2</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.alibaba</groupId>
  40. <artifactId>druid</artifactId>
  41. <version>1.0.26</version>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.hswebframework.web</groupId>
  46. <artifactId>hsweb-spring-boot-starter</artifactId>
  47. <version>${project.version}</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.hswebframework.web</groupId>
  52. <artifactId>hsweb-system-authorization-starter</artifactId>
  53. <version>${project.version}</version>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.hswebframework.web</groupId>
  58. <artifactId>hsweb-system-organizational-starter</artifactId>
  59. <version>${project.version}</version>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.hswebframework.web</groupId>
  64. <artifactId>hsweb-tests</artifactId>
  65. <version>${project.version}</version>
  66. <scope>test</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.hswebframework.web</groupId>
  70. <artifactId>hsweb-system-dynamic-form-starter</artifactId>
  71. <version>${project.version}</version>
  72. <scope>test</scope>
  73. </dependency>
  74. </dependencies>
  75. </project>