1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <artifactId>fiveep</artifactId>
- <packaging>pom</packaging>
- <groupId>com.bizmatics</groupId>
- <version>0.0.1</version>
- <name>fiveep</name>
- <description>fiveep</description>
- <parent>
- <artifactId>base-pom</artifactId>
- <groupId>com.bizmatics</groupId>
- <version>0.0.1</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>com.bizmatics</groupId>
- <artifactId>common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>com.bizmatics</groupId>
- <artifactId>common-spring</artifactId>
- </dependency>
- <dependency>
- <groupId>com.bizmatics</groupId>
- <artifactId>common-mvc</artifactId>
- </dependency>
- </dependencies>
- <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>test</projectName>
- <!-- <excludes>-->
- <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
- <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
- <!-- </excludes>-->
- </configuration>
- </plugin>
- </plugins>
- </build>
- <modules> <module>fiveep-service</module>
- <module>fiveep-model</module>
- <module>fiveep-persistence</module>
- <module>fiveep-controller</module>
- </modules>
- </project>
|