pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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>kioor-iogame</artifactId>
  5. <version>3.7.0</version>
  6. </parent>
  7. <modelVersion>4.0.0</modelVersion>
  8. <artifactId>kioor-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-spring-boot-starter</artifactId>
  19. <version>5.1.2</version>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <finalName>${project.artifactId}</finalName>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-maven-plugin</artifactId>
  28. </plugin>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-surefire-plugin</artifactId>
  32. <configuration>
  33. <skipTests>true</skipTests>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. </project>