pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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>quality-inspection</artifactId>
  7. <groupId>com.rongwei</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>business-common</artifactId>
  12. <properties>
  13. <mysql.version>8.0.11</mysql.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.rongwei</groupId>
  18. <artifactId>business-entity</artifactId>
  19. <version>1.0-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.rongwei</groupId>
  23. <artifactId>rw-common-component</artifactId>
  24. <version>0.0.1-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.rongwei</groupId>
  28. <artifactId>rw-admin-common</artifactId>
  29. <version>1.1-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-generator</artifactId>
  34. <version>3.2.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.velocity</groupId>
  38. <artifactId>velocity-engine-core</artifactId>
  39. <version>2.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. <version>${mysql.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.dameng</groupId>
  48. <artifactId>DmJdbcDriver18</artifactId>
  49. <version>8.1.1.193</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.lowagie</groupId>
  53. <artifactId>itext</artifactId>
  54. <version>2.1.7</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.lowagie</groupId>
  58. <artifactId>itext-rtf</artifactId>
  59. <version>2.1.7</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>io.springfox</groupId>
  63. <artifactId>springfox-swagger2</artifactId>
  64. <version>2.9.2</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>io.springfox</groupId>
  68. <artifactId>springfox-swagger-ui</artifactId>
  69. <version>2.9.2</version>
  70. </dependency>
  71. <!-- 解决maven打包 错误: 程序包com.sun.istack.internal不存在 - BBSMAX -->
  72. <dependency>
  73. <groupId>com.sun.xml.bind</groupId>
  74. <artifactId>jaxb-impl</artifactId>
  75. <version>2.2.11</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.jetbrains</groupId>
  79. <artifactId>annotations</artifactId>
  80. <version>13.0</version>
  81. </dependency>
  82. <!-- 解决maven打包 错误: 程序包com.sun.istack.internal不存在 - BBSMAX -->
  83. <dependency>
  84. <groupId>com.google.code.gson</groupId>
  85. <artifactId>gson</artifactId>
  86. <version>2.2.4</version>
  87. </dependency>
  88. <!-- websocket start -->
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-websocket</artifactId>
  92. <version>1.3.5.RELEASE</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework</groupId>
  96. <artifactId>spring-websocket</artifactId>
  97. <version>4.3.6.RELEASE</version>
  98. </dependency>
  99. <!-- websocket end -->
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>fastjson</artifactId>
  103. <version>1.2.70</version>
  104. </dependency>
  105. </dependencies>
  106. </project>