pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>zoniot-water</artifactId>
  7. <groupId>com.zcxk</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>zoniot-water-core</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.zcxk</groupId>
  15. <artifactId>zoniot-water-api</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.zcxk</groupId>
  19. <artifactId>zoniot-core-mysql</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.zcxk</groupId>
  23. <artifactId>zoniot-core-mongo</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.zcxk</groupId>
  27. <artifactId>zoniot-core-oauth2</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.zcxk</groupId>
  31. <artifactId>zoniot-core-mysql</artifactId>
  32. <exclusions>
  33. <exclusion>
  34. <groupId>com.github.pagehelper</groupId>
  35. <artifactId>pagehelper-spring-boot-starter</artifactId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. <executions>
  50. <execution>
  51. <phase>none</phase>
  52. </execution>
  53. </executions>
  54. <configuration>
  55. <classifier>execute</classifier>
  56. <skip>true</skip>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. <resources>
  61. <resource>
  62. <directory>src/main/java</directory>
  63. <includes>
  64. <include>**/*.xml</include>
  65. </includes>
  66. <filtering>false</filtering>
  67. </resource>
  68. <resource>
  69. <directory>src/main/resources</directory>
  70. </resource>
  71. </resources>
  72. </build>
  73. </project>