pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>stmms-ms-parent</artifactId>
  7. <groupId>cn.com.qmth</groupId>
  8. <version>${project.version}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>stmms-ms-admin</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cn.com.qmth</groupId>
  19. <artifactId>stmms-ms-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>cn.com.qmth</groupId>
  23. <artifactId>stmms-ms-marking</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.com.qmth</groupId>
  27. <artifactId>stmms-ms-commons</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>commons-lang</groupId>
  31. <artifactId>commons-lang</artifactId>
  32. <version>2.6</version>
  33. </dependency>
  34. <!--PDF转化工具-->
  35. <dependency>
  36. <groupId>com.itextpdf</groupId>
  37. <artifactId>itextpdf</artifactId>
  38. <version>5.4.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.xhtmlrenderer</groupId>
  42. <artifactId>core-renderer</artifactId>
  43. <version>R8</version>
  44. </dependency>
  45. <!--<dependency>-->
  46. <!--<groupId>io.springfox</groupId>-->
  47. <!--<artifactId>springfox-swagger2</artifactId>-->
  48. <!--<version>2.9.2</version>-->
  49. <!--</dependency>-->
  50. <!--<dependency>-->
  51. <!--<groupId>io.springfox</groupId>-->
  52. <!--<artifactId>springfox-swagger-ui</artifactId>-->
  53. <!--<version>2.9.2</version>-->
  54. <!--</dependency>-->
  55. <!--<dependency>-->
  56. <!--<groupId>io.swagger</groupId>-->
  57. <!--<artifactId>swagger-annotations</artifactId>-->
  58. <!--<version>1.5.21</version>-->
  59. <!--</dependency>-->
  60. <!--<dependency>-->
  61. <!--<groupId>io.swagger</groupId>-->
  62. <!--<artifactId>swagger-models</artifactId>-->
  63. <!--<version>1.5.21</version>-->
  64. <!--</dependency>-->
  65. </dependencies>
  66. </project>