pom.xml 1.6 KB

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