pom.xml 2.6 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>jetlinks-components</artifactId>
  7. <groupId>org.jetlinks.pro</groupId>
  8. <version>1.20.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>io-component</artifactId>
  12. <dependencies>
  13. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  14. <dependency>
  15. <groupId>commons-io</groupId>
  16. <artifactId>commons-io</artifactId>
  17. <version>2.11.0</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.hswebframework</groupId>
  21. <artifactId>reactor-excel</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.alibaba</groupId>
  25. <artifactId>easyexcel</artifactId>
  26. <version>3.1.0</version>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>org.apache.poi</groupId>
  30. <artifactId>poi-ooxml-schemas</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-webflux</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.hswebframework.web</groupId>
  40. <artifactId>hsweb-core</artifactId>
  41. <version>${hsweb.framework.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.projectreactor.netty</groupId>
  45. <artifactId>reactor-netty</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.jetlinks</groupId>
  49. <artifactId>jetlinks-core</artifactId>
  50. <version>${jetlinks.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.hswebframework.web</groupId>
  54. <artifactId>hsweb-commons-crud</artifactId>
  55. <version>${hsweb.framework.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.jetlinks.pro</groupId>
  59. <artifactId>configure-component</artifactId>
  60. <version>${project.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.jetlinks.pro</groupId>
  64. <artifactId>test-component</artifactId>
  65. <version>${project.version}</version>
  66. <scope>test</scope>
  67. </dependency>
  68. </dependencies>
  69. </project>