pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.1.7.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.xin</groupId>
  12. <artifactId>shardingsphere-jdbc-study</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>shardingsphere-jdbc-study</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <shardingsphere.version>4.0.0</shardingsphere.version>
  19. <shardingsphere.spi.impl.version>4.0.0</shardingsphere.spi.impl.version>
  20. <jxls.version>2.3.0</jxls.version>
  21. <jxls-poi.version>1.0.11</jxls-poi.version>
  22. <jxls-jexcel.version>1.0.6</jxls-jexcel.version>
  23. <jxls-reader.version>2.0.2</jxls-reader.version>
  24. <apache.poi.version>3.15</apache.poi.version>
  25. <poi.ooxml.version>3.15</poi.ooxml.version>
  26. </properties>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.mybatis.spring.boot</groupId>
  34. <artifactId>mybatis-spring-boot-starter</artifactId>
  35. <version>2.1.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. <scope>runtime</scope>
  41. </dependency>
  42. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>druid</artifactId>
  46. <version>1.1.21</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.baomidou</groupId>
  50. <artifactId>mybatis-plus-boot-starter</artifactId>
  51. <version>3.3.2</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.shardingsphere</groupId>
  55. <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
  56. <version>${shardingsphere.version}</version>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. <version>1.2.41</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-test</artifactId>
  67. <scope>test</scope>
  68. <exclusions>
  69. <exclusion>
  70. <groupId>org.junit.vintage</groupId>
  71. <artifactId>junit-vintage-engine</artifactId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.jxls</groupId>
  77. <artifactId>jxls</artifactId>
  78. <version>2.10.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.jxls</groupId>
  82. <artifactId>jxls-poi</artifactId>
  83. <version>2.10.0</version>
  84. </dependency>
  85. <!--get set-->
  86. <dependency>
  87. <groupId>org.projectlombok</groupId>
  88. <artifactId>lombok</artifactId>
  89. <scope>provided</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.github.pagehelper</groupId>
  93. <artifactId>pagehelper-spring-boot-starter</artifactId>
  94. <version>1.2.10</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>junit</groupId>
  98. <artifactId>junit</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework</groupId>
  102. <artifactId>spring-test</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-test</artifactId>
  107. </dependency>
  108. </dependencies>
  109. <repositories>
  110. <repository>
  111. <id>aliyun-repos</id>
  112. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  113. <snapshots>
  114. <enabled>false</enabled>
  115. </snapshots>
  116. </repository>
  117. </repositories>
  118. <build>
  119. <plugins>
  120. <plugin>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-maven-plugin</artifactId>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. </project>