pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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_program_center_core_entity</artifactId>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>o2oa</groupId>
  17. <artifactId>x_base_core_project</artifactId>
  18. </dependency>
  19. </dependencies>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <artifactId>maven-antrun-plugin</artifactId>
  24. <executions>
  25. <execution>
  26. <id>metamodel</id>
  27. <phase>generate-sources</phase>
  28. </execution>
  29. <execution>
  30. <id>createEnhancePersistenceXml</id>
  31. <phase>generate-resources</phase>
  32. </execution>
  33. <execution>
  34. <id>checkCore</id>
  35. <phase>prepare-package</phase>
  36. </execution>
  37. </executions>
  38. </plugin>
  39. <plugin>
  40. <groupId>org.apache.openjpa</groupId>
  41. <artifactId>openjpa-maven-plugin</artifactId>
  42. <executions>
  43. <execution>
  44. <id>enhancer</id>
  45. <phase>process-classes</phase>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. <plugin>
  50. <artifactId>maven-resources-plugin</artifactId>
  51. <executions>
  52. <execution>
  53. <id>copy-jar</id>
  54. <phase>verify</phase>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>