pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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_strategydeploy_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. </executions>
  34. </plugin>
  35. <plugin>
  36. <groupId>org.apache.openjpa</groupId>
  37. <artifactId>openjpa-maven-plugin</artifactId>
  38. <executions>
  39. <execution>
  40. <id>enhancer</id>
  41. <phase>process-classes</phase>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. <plugin>
  46. <artifactId>maven-resources-plugin</artifactId>
  47. <executions>
  48. <execution>
  49. <id>copy-custom-jar</id>
  50. <phase>verify</phase>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>