pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>o2oa</groupId>
  7. <artifactId>o2server</artifactId>
  8. <version>4.0.5</version>
  9. </parent>
  10. <artifactId>x_organization_assemble_express</artifactId>
  11. <packaging>war</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>o2oa</groupId>
  15. <artifactId>x_base_core_project</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>o2oa</groupId>
  19. <artifactId>x_organization_core_entity</artifactId>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <artifactId>maven-antrun-plugin</artifactId>
  26. <executions>
  27. <execution>
  28. <id>createPersistenceXml</id>
  29. <phase>generate-sources</phase>
  30. </execution>
  31. <execution>
  32. <id>describe</id>
  33. <phase>generate-sources</phase>
  34. </execution>
  35. </executions>
  36. </plugin>
  37. <plugin>
  38. <artifactId>maven-resources-plugin</artifactId>
  39. <executions>
  40. <execution>
  41. <id>copy-war</id>
  42. <phase>verify</phase>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>