Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <dependency>
  2. <groupId>com.querydsl</groupId>
  3. <artifactId>querydsl-jpa</artifactId>
  4. <version>4.1.4</version>
  5. </dependency>
  6.  
  7.  
  8. <plugin>
  9. <groupId>com.mysema.maven</groupId>
  10. <artifactId>apt-maven-plugin</artifactId>
  11. <version>1.1.3</version>
  12. <executions>
  13. <execution>
  14. <goals>
  15. <goal>process</goal>
  16. </goals>
  17. <configuration>
  18. <outputDirectory>target/generated-sources/java</outputDirectory>
  19. <processor>com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
  20. </configuration>
  21. </execution>
  22. </executions>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.querydsl</groupId>
  26. <artifactId>querydsl-apt</artifactId>
  27. <version>4.1.4</version>
  28. </dependency>
  29. </dependencies>
  30. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement