123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <parent>
- <artifactId>zoniot-water</artifactId>
- <groupId>com.zcxk</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>zoniot-water-core</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-water-api</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-core-mysql</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-core-mongo</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-core-oauth2</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-core-mysql</artifactId>
- <exclusions>
- <exclusion>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <executions>
- <execution>
- <phase>none</phase>
- </execution>
- </executions>
- <configuration>
- <classifier>execute</classifier>
- <skip>true</skip>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/java</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- <filtering>false</filtering>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- </resource>
- </resources>
- </build>
- </project>
|