pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <modelVersion>4.0.0</modelVersion>
  6. <packaging>pom</packaging>
  7. <parent>
  8. <groupId>com.tencent.tsf</groupId>
  9. <artifactId>spring-cloud-tsf-dependencies</artifactId>
  10. <version>1.23.0-Greenwich-RELEASE</version>
  11. </parent>
  12. <modules>
  13. <module>minsheng-common</module>
  14. <module>minsheng-card</module>
  15. <module>minsheng-user</module>
  16. <module>minsheng-log</module>
  17. </modules>
  18. <groupId>com.tsf</groupId>
  19. <artifactId>tsf-minsheng</artifactId>
  20. <version>1.0-SNAPSHOT</version>
  21. <properties>
  22. <maven.compiler.source>8</maven.compiler.source>
  23. <maven.compiler.target>8</maven.compiler.target>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.tencent.tsf</groupId>
  28. <artifactId>spring-cloud-tsf-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.tencentcloudapi</groupId>
  32. <artifactId>tencentcloud-sdk-java</artifactId>
  33. <version>3.1.49</version>
  34. </dependency>
  35. </dependencies>
  36. </project>