pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <artifactId>mhfire</artifactId>
  7. <packaging>pom</packaging>
  8. <version>0.0.1</version>
  9. <name>mhfire</name>
  10. <description>mhfire</description>
  11. <modules>
  12. <module>mhfire-controller</module>
  13. <module>mhfire-service</module>
  14. <module>mhfire-mapping</module>
  15. <module>mhfire-model</module>
  16. </modules>
  17. <parent>
  18. <artifactId>base-pom</artifactId>
  19. <groupId>com.bizmatics</groupId>
  20. <version>0.0.1</version>
  21. </parent>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.bizmatics</groupId>
  25. <artifactId>common-core</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.bizmatics</groupId>
  29. <artifactId>common-spring</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.bizmatics</groupId>
  33. <artifactId>common-mvc</artifactId>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>com.github.shalousun</groupId>
  40. <artifactId>smart-doc-maven-plugin</artifactId>
  41. <version>2.1.1</version>
  42. <configuration>
  43. <!--指定生成文档的使用的配置文件,配置文件放在自己的项目中-->
  44. <configFile>./src/main/resources/smart-doc.json</configFile>
  45. <!--指定项目名称-->
  46. <projectName>test</projectName>
  47. <!-- <excludes>-->
  48. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  49. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  50. <!-- </excludes>-->
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>