pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. <modelVersion>4.0.0</modelVersion>
  4. <artifactId>fiveep</artifactId>
  5. <packaging>pom</packaging>
  6. <groupId>com.bizmatics</groupId>
  7. <version>0.0.1</version>
  8. <name>fiveep</name>
  9. <description>fiveep</description>
  10. <parent>
  11. <artifactId>base-pom</artifactId>
  12. <groupId>com.bizmatics</groupId>
  13. <version>0.0.1</version>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.bizmatics</groupId>
  18. <artifactId>common-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.bizmatics</groupId>
  22. <artifactId>common-spring</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.bizmatics</groupId>
  26. <artifactId>common-mvc</artifactId>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>com.github.shalousun</groupId>
  33. <artifactId>smart-doc-maven-plugin</artifactId>
  34. <version>2.1.1</version>
  35. <configuration>
  36. <!--???????????????????????,?????????????????????-->
  37. <configFile>./src/main/resources/smart-doc.json</configFile>
  38. <!--??????????-->
  39. <projectName>test</projectName>
  40. <!-- <excludes>-->
  41. <!-- <exclude>com.bizmatics:product-service-provider</exclude>-->
  42. <!-- <exclude>cn.afterturn:easypoi-web</exclude>-->
  43. <!-- </excludes>-->
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. <modules> <module>fiveep-service</module>
  49. <module>fiveep-model</module>
  50. <module>fiveep-persistence</module>
  51. <module>fiveep-controller</module>
  52. </modules>
  53. </project>