pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. <groupId>com.dgtis</groupId>
  5. <artifactId>dorm-manager-db</artifactId>
  6. <version>0.1.0</version>
  7. <packaging>jar</packaging>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>1.5.10.RELEASE</version>
  12. <relativePath /> <!-- lookup parent from repository -->
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <java.version>1.8</java.version>
  17. <maven.test.skip>true</maven.test.skip>
  18. </properties>
  19. <dependencies>
  20. <!-- Dom4j 依赖包 -->
  21. <dependency>
  22. <groupId>dom4j</groupId>
  23. <artifactId>dom4j</artifactId>
  24. <version>1.6.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter</artifactId>
  29. </dependency>
  30. <!--Spring Boot Web 依赖-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <!-- Spring Boot Mybatis 依赖 -->
  36. <dependency>
  37. <groupId>org.mybatis.spring.boot</groupId>
  38. <artifactId>mybatis-spring-boot-starter</artifactId>
  39. <version>1.3.2</version>
  40. </dependency>
  41. <!-- Spring Boot pagehelper 依赖 -->
  42. <dependency>
  43. <groupId>com.github.pagehelper</groupId>
  44. <artifactId>pagehelper-spring-boot-starter</artifactId>
  45. <version>1.2.3</version>
  46. </dependency>
  47. <!-- MySQL 连接驱动依赖 -->
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.alibaba</groupId>
  54. <artifactId>druid-spring-boot-starter</artifactId>
  55. <version>1.1.6</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. <artifactId>jackson-databind</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <!-- 热部署模块 -->
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-devtools</artifactId>
  70. <optional>true</optional>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.mybatis.generator</groupId>
  74. <artifactId>mybatis-generator-core</artifactId>
  75. <version>1.3.6</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.commons</groupId>
  79. <artifactId>commons-lang3</artifactId>
  80. <version>3.7</version>
  81. </dependency>
  82. <!-- json -->
  83. <dependency>
  84. <groupId>net.sf.json-lib</groupId>
  85. <artifactId>json-lib</artifactId>
  86. <version>2.3</version>
  87. <classifier>jdk15</classifier>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.google.code.gson</groupId>
  91. <artifactId>gson</artifactId>
  92. <version>2.8.5</version>
  93. <scope>compile</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.twelvemonkeys.imageio</groupId>
  97. <artifactId>imageio-jpeg</artifactId>
  98. <version>3.0-rc5</version>
  99. </dependency>
  100. <!--中文转拼音 start -->
  101. <dependency>
  102. <groupId>com.belerweb</groupId>
  103. <artifactId>pinyin4j</artifactId>
  104. <version>2.5.0</version>
  105. </dependency>
  106. <!--中文转拼音 end -->
  107. </dependencies>
  108. <build>
  109. <plugins>
  110. <plugin>
  111. <groupId>org.mybatis.generator</groupId>
  112. <artifactId>mybatis-generator-maven-plugin</artifactId>
  113. <version>1.3.6</version>
  114. <configuration>
  115. <configurationFile>
  116. mybatis-generator/generatorConfig.xml
  117. </configurationFile>
  118. <overwrite>true</overwrite>
  119. <verbose>true</verbose>
  120. </configuration>
  121. <dependencies>
  122. <dependency>
  123. <groupId>mysql</groupId>
  124. <artifactId>mysql-connector-java</artifactId>
  125. <version>5.1.44</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.itfsw</groupId>
  129. <artifactId>mybatis-generator-plugin</artifactId>
  130. <version>1.1.2</version>
  131. </dependency>
  132. </dependencies>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>