pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>jnpf-boot-common</artifactId>
  7. <groupId>com.jnpf</groupId>
  8. <version>5.2.0-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>jnpf-common-shardingsphere</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.jnpf</groupId>
  16. <artifactId>jnpf-common-database</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.shardingsphere</groupId>
  20. <artifactId>shardingsphere-jdbc-core</artifactId>
  21. <scope>compile</scope>
  22. <exclusions>
  23. <exclusion>
  24. <artifactId>log4j</artifactId>
  25. <groupId>log4j</groupId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. </dependencies>
  30. </project>