pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.superdesk.uniorder</groupId>
  7. <artifactId>superdesk-operation-center</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>superdesk-uniorder-dto</artifactId>
  11. <dependencies>
  12. <!-- <dependency>-->
  13. <!-- <groupId>org.projectlombok</groupId>-->
  14. <!-- <artifactId>lombok</artifactId>-->
  15. <!-- <version>${lombok.version}</version>-->
  16. <!-- <scope>provided</scope>-->
  17. <!-- </dependency>-->
  18. <!-- <dependency>-->
  19. <!-- <groupId>cn.superdesk.libs</groupId>-->
  20. <!-- <artifactId>superdesk-libs-common</artifactId>-->
  21. <!-- <version>1.3.1-SNAPSHOT</version>-->
  22. <!-- <scope>compile</scope>-->
  23. <!-- </dependency>-->
  24. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
  25. <dependency>
  26. <groupId>io.springfox</groupId>
  27. <artifactId>springfox-swagger2</artifactId>
  28. <version>3.0.0</version>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
  31. <dependency>
  32. <groupId>io.springfox</groupId>
  33. <artifactId>springfox-swagger-ui</artifactId>
  34. <version>3.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.springfox</groupId>
  38. <artifactId>springfox-bean-validators</artifactId>
  39. <version>3.0.0</version>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/com.github.houbb/iexcel -->
  42. <dependency>
  43. <groupId>com.github.houbb</groupId>
  44. <artifactId>iexcel</artifactId>
  45. <version>0.0.9</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.validation</groupId>
  49. <artifactId>validation-api</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.superdesk.uniorder</groupId>
  53. <artifactId>superdesk-uniorder-common</artifactId>
  54. <version>${project.parent.version}</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>easyexcel</artifactId>
  60. <version>2.2.7</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.hibernate.validator</groupId>
  64. <artifactId>hibernate-validator</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>cn.superdesk.uniorder</groupId>
  68. <artifactId>superdesk-uniorder-openapicall-thirdpart-szhtxx-electronicInvoice-dto</artifactId>
  69. <version>${project.parent.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>cn.superdesk.uniorder</groupId>
  73. <artifactId>superdesk-uniorder-openapicall-thirdpart-szhtxx-paperInvoice-dto</artifactId>
  74. <version>${project.parent.version}</version>
  75. </dependency>
  76. </dependencies>
  77. </project>