pom.xml 3.4 KB

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