pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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-manage</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. <!-- Excel处理 https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>easyexcel</artifactId>
  40. <version>2.2.10</version>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  43. <dependency>
  44. <groupId>com.squareup.okhttp3</groupId>
  45. <artifactId>okhttp</artifactId>
  46. <version>4.6.0</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  49. <dependency>
  50. <groupId>org.testng</groupId>
  51. <artifactId>testng</artifactId>
  52. <version>7.1.0</version>
  53. <scope>test</scope>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <finalName>${project.artifactId}</finalName>
  58. </build>
  59. </project>