pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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>tj-message</artifactId>
  7. <groupId>com.tianji</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tj-message-service</artifactId>
  12. <properties>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.baomidou</groupId>
  23. <artifactId>mybatis-plus-boot-starter</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. </dependency>
  29. <!--Redis-->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-data-redis</artifactId>
  33. </dependency>
  34. <!--discovery-->
  35. <dependency>
  36. <groupId>com.alibaba.cloud</groupId>
  37. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  38. </dependency>
  39. <!--config-->
  40. <dependency>
  41. <groupId>com.alibaba.cloud</groupId>
  42. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  43. </dependency>
  44. <!--swagger-->
  45. <dependency>
  46. <groupId>com.github.xiaoymin</groupId>
  47. <artifactId>knife4j-spring-boot-starter</artifactId>
  48. </dependency>
  49. <!--api-->
  50. <dependency>
  51. <groupId>com.tianji</groupId>
  52. <artifactId>tj-api</artifactId>
  53. <version>1.0.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.tianji</groupId>
  57. <artifactId>tj-message-domain</artifactId>
  58. <version>1.0.0</version>
  59. </dependency>
  60. <!--mq-->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-amqp</artifactId>
  64. </dependency>
  65. <!--caffeine-->
  66. <dependency>
  67. <groupId>com.github.ben-manes.caffeine</groupId>
  68. <artifactId>caffeine</artifactId>
  69. </dependency>
  70. <!--xxl-job-->
  71. <dependency>
  72. <groupId>com.xuxueli</groupId>
  73. <artifactId>xxl-job-core</artifactId>
  74. </dependency>
  75. <!--阿里云短信,异步版本-->
  76. <dependency>
  77. <groupId>com.aliyun</groupId>
  78. <artifactId>alibabacloud-dysmsapi20170525</artifactId>
  79. <version>1.0.1</version>
  80. </dependency>
  81. </dependencies>
  82. <build>
  83. <finalName>${project.artifactId}</finalName>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-maven-plugin</artifactId>
  88. <executions>
  89. <execution>
  90. <goals>
  91. <goal>build-info</goal>
  92. </goals>
  93. </execution>
  94. </executions>
  95. <configuration>
  96. <mainClass>com.tianji.message.MessageApplication</mainClass>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>