pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <parent>
  3. <groupId>com.kioor</groupId>
  4. <artifactId>toby-yezhu</artifactId>
  5. <version>4.2.0</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>yezhu-shardingsphere-demo</artifactId>
  9. <packaging>jar</packaging>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-test</artifactId>
  14. <scope>test</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.apache.shardingsphere</groupId>
  18. <artifactId>shardingsphere-jdbc-core</artifactId>
  19. <version>5.4.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.glassfish.jaxb</groupId>
  23. <artifactId>jaxb-runtime</artifactId>
  24. <version>2.3.8</version>
  25. </dependency>
  26. </dependencies>
  27. <build>
  28. <finalName>${project.artifactId}</finalName>
  29. <plugins>
  30. <plugin>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-maven-plugin</artifactId>
  33. </plugin>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-surefire-plugin</artifactId>
  37. <configuration>
  38. <skipTests>true</skipTests>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>