pom.xml 916 B

1234567891011121314151617181920212223242526272829303132
  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. <parent>
  5. <groupId>com.ym</groupId>
  6. <artifactId>mec</artifactId>
  7. <version>1.0</version>
  8. </parent>
  9. <artifactId>mec-common</artifactId>
  10. <packaging>pom</packaging>
  11. <name>mec-common</name>
  12. <url>http://maven.apache.org</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.ym</groupId>
  19. <artifactId>mec-util</artifactId>
  20. </dependency>
  21. </dependencies>
  22. <modules>
  23. <module>common-core</module>
  24. <module>common-log</module>
  25. <module>mongo-db</module>
  26. <module>audit-log</module>
  27. </modules>
  28. </project>