35 lines
1.0 KiB
XML
35 lines
1.0 KiB
XML
<?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>
|
|
|
|
<artifactId>v5-framework-all</artifactId>
|
|
<groupId>com.fkhwl</groupId>
|
|
<version>stable</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>ability</module>
|
|
<module>band</module>
|
|
<module>coffee</module>
|
|
<module>fkh-rocketmq-test</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<maven.install.skip>true</maven.install.skip>
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>skip-check</id>
|
|
<properties>
|
|
<maven.test.skip>true</maven.test.skip>
|
|
<checkstyle.skip>true</checkstyle.skip>
|
|
<pmd.skip>true</pmd.skip>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|