Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>pl.lodz.p.it</groupId>
  6. <artifactId>pl.lodz.p.it</artifactId>
  7. <version>0.0.7-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>modelEntity</artifactId>
  10. <name>modelEntity</name>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.eclipse.persistence</groupId>
  14. <artifactId>eclipselink</artifactId>
  15. <version>2.5.1</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.eclipse.persistence</groupId>
  19. <artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
  20. <version>2.5.1</version>
  21. <scope>provided</scope>
  22. </dependency>
  23. </dependencies>
  24. <build>
  25. <pluginManagement>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.bsc.maven</groupId>
  29. <artifactId>maven-processor-plugin</artifactId>
  30. <version>2.2.4</version>
  31. <executions>
  32. <execution>
  33. <id>eclipselink-jpa-metamodel</id>
  34. <goals>
  35. <goal>process</goal>
  36. </goals>
  37. <phase>generate-sources</phase>
  38. <configuration>
  39. <!-- ... -->
  40. <!-- ... -->
  41. <processors>
  42. <processor>
  43. org.eclipse.persistence.internal.jpa.modelgen.CanonicalModelProcessor
  44. </processor>
  45. </processors>
  46. <outputDirectory>
  47. ${basedir}/src/main/java
  48. </outputDirectory>
  49. </configuration>
  50. </execution>
  51. </executions>
  52. <dependencies>
  53. <dependency>
  54. <groupId>org.eclipse.persistence</groupId>
  55. <artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
  56. <version>2.5.1</version>
  57. </dependency>
  58. </dependencies>
  59. </plugin>
  60. </plugins>
  61. </pluginManagement>
  62. </build>
  63. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement