12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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>platform</artifactId>
- <groupId>com.zcxk</groupId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-water</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>zoniot-water-api</module>
- <module>zoniot-water-core</module>
- <module>zoniot-water-web</module>
- <module>zoniot-water-xxl-client</module>
- </modules>
- <properties>
- <zoniot.version>1.0-SNAPSHOT</zoniot.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-water-api</artifactId>
- <version>${zoniot.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-water-core</artifactId>
- <version>${zoniot.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-core-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-core-utils</artifactId>
- </dependency>
- <!-- <dependency>
- <groupId>com.zcxk</groupId>
- <artifactId>zoniot-service-sync</artifactId>
- </dependency>-->
- </dependencies>
- </project>
|