pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. <repositories>
  16. <repository>
  17. <id>com.e-iceblue</id>
  18. <name>e-iceblue</name>
  19. <url>https://repo.e-iceblue.cn/repository/maven-public/</url>
  20. </repository>
  21. </repositories>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.rongwei</groupId>
  25. <artifactId>business-entity</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.rongwei</groupId>
  30. <artifactId>rw-common-component</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.rongwei</groupId>
  35. <artifactId>rw-admin-common</artifactId>
  36. <version>1.1-SNAPSHOT</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-generator</artifactId>
  41. <version>3.2.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.velocity</groupId>
  45. <artifactId>velocity-engine-core</artifactId>
  46. <version>2.2</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. <version>${mysql.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.dameng</groupId>
  55. <artifactId>DmJdbcDriver18</artifactId>
  56. <version>8.1.1.193</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.lowagie</groupId>
  60. <artifactId>itext</artifactId>
  61. <version>2.1.7</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.lowagie</groupId>
  65. <artifactId>itext-rtf</artifactId>
  66. <version>2.1.7</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.springfox</groupId>
  70. <artifactId>springfox-swagger2</artifactId>
  71. <version>2.9.2</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.springfox</groupId>
  75. <artifactId>springfox-swagger-ui</artifactId>
  76. <version>2.9.2</version>
  77. </dependency>
  78. <!-- 解决maven打包 错误: 程序包com.sun.istack.internal不存在 - BBSMAX -->
  79. <dependency>
  80. <groupId>com.sun.xml.bind</groupId>
  81. <artifactId>jaxb-impl</artifactId>
  82. <version>2.2.11</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.jetbrains</groupId>
  86. <artifactId>annotations</artifactId>
  87. <version>13.0</version>
  88. </dependency>
  89. <!-- 解决maven打包 错误: 程序包com.sun.istack.internal不存在 - BBSMAX -->
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>fastjson</artifactId>
  93. <version>1.2.70</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework</groupId>
  97. <artifactId>spring-test</artifactId>
  98. </dependency>
  99. <!-- sqlserver的jdbc驱动-->
  100. <dependency>
  101. <groupId>com.microsoft.sqlserver</groupId>
  102. <artifactId>mssql-jdbc</artifactId>
  103. <version>8.2.2.jre8</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>e-iceblue</groupId>
  107. <artifactId>spire.doc</artifactId>
  108. <version>12.4.1</version>
  109. </dependency>
  110. </dependencies>
  111. </project>