pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.kdan.compdf</groupId>
  7. <artifactId>background</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <artifactId>background-user</artifactId>
  11. <version>0.0.1</version>
  12. <name>background-user</name>
  13. <description>用户后台</description>
  14. <properties>
  15. <oss.version>3.10.2</oss.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cn.kdan.compdf</groupId>
  20. <artifactId>background-common</artifactId>
  21. <version>0.0.1</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.kdan.compdf</groupId>
  25. <artifactId>background-mybatis</artifactId>
  26. <version>0.0.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cn.kdan.compdf</groupId>
  30. <artifactId>background-redis</artifactId>
  31. <version>0.0.1</version>
  32. </dependency>
  33. <!--easy Excel-->
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>easyexcel</artifactId>
  37. <version>${easyexcel.version}</version>
  38. </dependency>
  39. <!--rabbitmq-->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-amqp</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-freemarker</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-mail</artifactId>
  51. </dependency>
  52. <!--oss-->
  53. <dependency>
  54. <groupId>com.aliyun.oss</groupId>
  55. <artifactId>aliyun-sdk-oss</artifactId>
  56. <version>${oss.version}</version>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <finalName>background-user</finalName>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>