pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <groupId>com.starbuds.server</groupId>
  7. <artifactId>api-family</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>com.starbuds.server</groupId>
  12. <artifactId>api-parent</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. </parent>
  15. <properties>
  16. <mybatis-spring-boot-starter.version>2.1.1</mybatis-spring-boot-starter.version>
  17. <druid-version>1.1.21</druid-version>
  18. </properties>
  19. <dependencies>
  20. <!-- mybatis -->
  21. <dependency>
  22. <groupId>org.mybatis.spring.boot</groupId>
  23. <artifactId>mybatis-spring-boot-starter</artifactId>
  24. <version>${mybatis-spring-boot-starter.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>mysql</groupId>
  28. <artifactId>mysql-connector-java</artifactId>
  29. </dependency>
  30. <!-- druid -->
  31. <dependency>
  32. <groupId>com.alibaba</groupId>
  33. <artifactId>druid-spring-boot-starter</artifactId>
  34. <version>${druid-version}</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <finalName>${project.artifactId}</finalName>
  39. </build>
  40. </project>