pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <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">
  3. <parent>
  4. <artifactId>base-pom</artifactId>
  5. <groupId>com.bizmatics</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>system</artifactId>
  10. <packaging>pom</packaging>
  11. <version>0.0.1</version>
  12. <name>system</name>
  13. <description>system</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.bizmatics</groupId>
  17. <artifactId>common-mvc</artifactId>
  18. </dependency>
  19. </dependencies>
  20. <modules>
  21. <module>system-controller</module>
  22. <module>system-service</module>
  23. <module>system-persistence</module>
  24. <module>system-model</module>
  25. </modules>
  26. <build>
  27. <plugins>
  28. <plugin>
  29. <groupId>com.github.shalousun</groupId>
  30. <artifactId>smart-doc-maven-plugin</artifactId>
  31. <version>2.1.1</version>
  32. <configuration>
  33. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  34. <configFile>./src/main/resources/smart-doc.json</configFile>
  35. <!--指定项目名称-->
  36. <projectName>System</projectName>
  37. <excludes>
  38. <exclude>com.bizmatics:system-service-provider</exclude>
  39. </excludes>
  40. </configuration>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. </project>