pom.xml 1.3 KB

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