12345678910111213141516171819202122232425262728293031323334353637 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.xxh.cloud.inspur</groupId>
- <artifactId>xxh-inspur-java</artifactId>
- <version>1.0.0</version>
- <packaging>pom</packaging>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <xx.framework.version>1.0.0</xx.framework.version>
- </properties>
- <modules>
- <module>xxh-inspur-admin-web</module>
- <module>xxh-inspur-customer-web</module>
- <module>xxh-inspur-framework</module>
- <module>xxh-inspur-run</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.xxh.cloud</groupId>
- <artifactId>xx-framework-dependencies</artifactId>
- <version>${xx.framework.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|