pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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. <artifactId>litemall-db</artifactId>
  5. <packaging>jar</packaging>
  6. <parent>
  7. <groupId>org.linlinjava</groupId>
  8. <artifactId>litemall</artifactId>
  9. <version>0.1.0</version>
  10. </parent>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-json</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.mybatis.spring.boot</groupId>
  18. <artifactId>mybatis-spring-boot-starter</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.github.pagehelper</groupId>
  22. <artifactId>pagehelper-spring-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.alibaba</groupId>
  30. <artifactId>druid-spring-boot-starter</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.mybatis.generator</groupId>
  37. <artifactId>mybatis-generator-maven-plugin</artifactId>
  38. <version>1.3.7</version>
  39. <configuration>
  40. <configurationFile>
  41. mybatis-generator/generatorConfig.xml
  42. </configurationFile>
  43. <overwrite>true</overwrite>
  44. <verbose>true</verbose>
  45. </configuration>
  46. <dependencies>
  47. <dependency>
  48. <groupId>mysql</groupId>
  49. <artifactId>mysql-connector-java</artifactId>
  50. <version>8.0.16</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.itfsw</groupId>
  54. <artifactId>mybatis-generator-plugin</artifactId>
  55. <version>1.3.2</version>
  56. </dependency>
  57. </dependencies>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>