1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <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>base-pom</artifactId>
- <groupId>com.bizmatics</groupId>
- <version>0.0.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>system</artifactId>
- <packaging>pom</packaging>
- <version>0.0.1</version>
- <name>system</name>
- <description>system</description>
- <dependencies>
- <dependency>
- <groupId>com.bizmatics</groupId>
- <artifactId>common-mvc</artifactId>
- </dependency>
- </dependencies>
- <modules>
- <module>system-controller</module>
- <module>system-service</module>
- <module>system-persistence</module>
- <module>system-model</module>
- </modules>
- <build>
- <plugins>
- <plugin>
- <groupId>com.github.shalousun</groupId>
- <artifactId>smart-doc-maven-plugin</artifactId>
- <version>2.1.1</version>
- <configuration>
- <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
- <configFile>./src/main/resources/smart-doc.json</configFile>
- <!--指定项目名称-->
- <projectName>System</projectName>
- <excludes>
- <exclude>com.bizmatics:system-service-provider</exclude>
- </excludes>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|