pom.xml 2.9 KB

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