Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>tn.esprit</groupId>
  4. <artifactId>TestJEE-Client</artifactId>
  5. <version>1.0</version>
  6. <properties>
  7. <maven.compiler.target>1.8</maven.compiler.target>
  8. <maven.compiler.source>1.8</maven.compiler.source>
  9. </properties>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.wildfly</groupId>
  13. <artifactId>wildfly-ejb-client-bom</artifactId>
  14. <version>11.0.0.Final</version>
  15. <type>pom</type>
  16. </dependency>
  17.  
  18. <dependency>
  19. <groupId>tn.esprit</groupId>
  20. <artifactId>TestJEE-ejb</artifactId>
  21. <version>1.0</version>
  22. <type>ejb</type>
  23. </dependency>
  24.  
  25. <dependency>
  26. <groupId>org.hibernate</groupId>
  27. <artifactId>hibernate-entitymanager</artifactId>
  28. <version>4.3.10.Final</version>
  29. </dependency>
  30. </dependencies>
  31. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement