pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>mbg</artifactId>
  6. <name>mbg</name>
  7. <description>mbg</description>
  8. <parent>
  9. <artifactId>eas-system</artifactId>
  10. <groupId>com.koobietech.eas</groupId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.github.xiaoymin</groupId>
  16. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.mybatis.generator</groupId>
  20. <artifactId>mybatis-generator-core</artifactId>
  21. <version>${mybatis-genertator.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.mysql</groupId>
  25. <artifactId>mysql-connector-j</artifactId>
  26. <version>${mysql-connector-j.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.mybatis.spring.boot</groupId>
  30. <artifactId>mybatis-spring-boot-starter</artifactId>
  31. <version>${mybatis.version}</version>
  32. </dependency>
  33. </dependencies>
  34. <repositories>
  35. <repository>
  36. <id>aliyun</id>
  37. <name>aliyun</name>
  38. <url>https://maven.aliyun.com/repository/public</url>
  39. <releases>
  40. <enabled>true</enabled>
  41. </releases>
  42. <snapshots>
  43. <enabled>false</enabled>
  44. </snapshots>
  45. </repository>
  46. </repositories>
  47. </project>