You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
3.6 KiB

2 months ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.homily</groupId>
  6. <artifactId>homily_link</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>service</artifactId>
  10. <packaging>pom</packaging>
  11. <name>service Maven Webapp</name>
  12. <url>http://maven.apache.org</url>
  13. <modules>
  14. <module>service_assignment</module>
  15. </modules>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.homily</groupId>
  19. <artifactId>service_base</artifactId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <!-- mybatis-plus -->
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-boot-starter</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-generator</artifactId>
  34. </dependency>
  35. <!-- mysql -->
  36. <dependency>
  37. <groupId>mysql</groupId>
  38. <artifactId>mysql-connector-java</artifactId>
  39. </dependency>
  40. <!-- velocity 模板引擎, Mybatis Plus 代码生成器需要 -->
  41. <dependency>
  42. <groupId>org.apache.velocity</groupId>
  43. <artifactId>velocity-engine-core</artifactId>
  44. </dependency>
  45. <!-- swagger -->
  46. <dependency>
  47. <groupId>io.springfox</groupId>
  48. <artifactId>springfox-swagger2</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.springfox</groupId>
  52. <artifactId>springfox-swagger-ui</artifactId>
  53. </dependency>
  54. <!-- lombok用来简化实体类:需要安装lombok插件 -->
  55. <dependency>
  56. <groupId>org.projectlombok</groupId>
  57. <artifactId>lombok</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-fileupload</groupId>
  61. <artifactId>commons-fileupload</artifactId>
  62. </dependency>
  63. <!-- httpclient -->
  64. <dependency>
  65. <groupId>org.apache.httpcomponents</groupId>
  66. <artifactId>httpclient</artifactId>
  67. </dependency>
  68. <!-- commons-io -->
  69. <dependency>
  70. <groupId>commons-io</groupId>
  71. <artifactId>commons-io</artifactId>
  72. </dependency>
  73. <!-- json -->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>fastjson</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.json</groupId>
  80. <artifactId>json</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.google.code.gson</groupId>
  84. <artifactId>gson</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-test</artifactId>
  89. <scope>test</scope>
  90. <exclusions>
  91. <exclusion>
  92. <groupId>org.junit.vintage</groupId>
  93. <artifactId>junit-vintage-engine</artifactId>
  94. </exclusion>
  95. </exclusions>
  96. </dependency>
  97. </dependencies>
  98. <build>
  99. <finalName>service</finalName>
  100. </build>
  101. </project>