pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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>cn.mrdear</groupId>
  5. <artifactId>mrdear</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>fakeMes</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <java.version>1.8</java.version>
  13. </properties>
  14. <parent>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-parent</artifactId>
  17. <version>1.4.0.RELEASE</version>
  18. </parent>
  19. <dependencies>
  20. <!--spring boot start-->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  24. </dependency>
  25. <!--mybatis start-->
  26. <dependency>
  27. <groupId>org.mybatis.spring.boot</groupId>
  28. <artifactId>mybatis-spring-boot-starter</artifactId>
  29. <version>1.1.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.github.pagehelper</groupId>
  33. <artifactId>pagehelper</artifactId>
  34. <version>4.1.3</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mybatis.caches</groupId>
  38. <artifactId>mybatis-ehcache</artifactId>
  39. <version>1.0.3</version>
  40. </dependency>
  41. <!--mybatis end-->
  42. <!--spring boot end-->
  43. <!--ehcache start-->
  44. <dependency>
  45. <groupId>net.sf.ehcache</groupId>
  46. <artifactId>ehcache</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.sf.ehcache</groupId>
  50. <artifactId>ehcache-web</artifactId>
  51. <version>2.0.4</version>
  52. </dependency>
  53. <!--ehcache end-->
  54. <!--druid start-->
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>druid</artifactId>
  58. <version>1.0.19</version>
  59. </dependency>
  60. <!--druid end-->
  61. <!--mysql start-->
  62. <dependency>
  63. <groupId>mysql</groupId>
  64. <artifactId>mysql-connector-java</artifactId>
  65. <version>5.1.34</version>
  66. </dependency>
  67. <!--mysql end-->
  68. <dependency>
  69. <groupId>org.postgresql</groupId>
  70. <artifactId>postgresql</artifactId>
  71. <version>42.3.1</version> <!-- 使用最新版本或适合你的 PostgreSQL 数据库服务器的版本 -->
  72. </dependency>
  73. <!--fast json start-->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>fastjson</artifactId>
  77. <version>1.2.14</version>
  78. </dependency>
  79. <!--fast json end-->
  80. <!--junit start-->
  81. <dependency>
  82. <groupId>junit</groupId>
  83. <artifactId>junit</artifactId>
  84. <version>4.10</version>
  85. <scope>test</scope>
  86. </dependency>
  87. <!--junit end-->
  88. <dependency>
  89. <groupId>ch.qos.logback</groupId>
  90. <artifactId>logback-classic</artifactId>
  91. </dependency>
  92. </dependencies>
  93. <build>
  94. <finalName>fakeMes</finalName>
  95. <!--spring boot plugin start-->
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. <!--配置热部署-->
  101. <dependencies>
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>springloaded</artifactId>
  105. <version>1.2.0.RELEASE</version>
  106. </dependency>
  107. </dependencies>
  108. </plugin>
  109. </plugins>
  110. <!--spring boot plugin end-->
  111. </build>
  112. </project>