pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>cn.qinys</groupId>
  6. <artifactId>platform-service</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>platform-service-mobile</artifactId>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.qinys</groupId>
  16. <artifactId>platform-core-base</artifactId>
  17. <version>1.0.0-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.qinys</groupId>
  21. <artifactId>platform-entity-wishing</artifactId>
  22. <version>1.0.0-SNAPSHOT</version>
  23. </dependency>
  24. <!--数据库-->
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba.cloud</groupId>
  31. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <scope>test</scope>
  37. </dependency>
  38. </dependencies>
  39. </project>