Advertisement
chrisasl

pom.xml

Aug 23rd, 2014
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>com.uoadi.leasing</groupId>
  8. <artifactId>leasing-app</artifactId>
  9. <version>1.0</version>
  10.  
  11. <dependencies>
  12. <dependency>
  13. <groupId>ch.qos.logback</groupId>
  14. <artifactId>logback-classic</artifactId>
  15. <version>1.1.2</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>javax.persistence</groupId>
  19. <artifactId>persistence-api</artifactId>
  20. <version>1.0.2</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.hibernate</groupId>
  24. <artifactId>hibernate-core</artifactId>
  25. <version>4.2.2.Final</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.omnifaces</groupId>
  29. <artifactId>omnifaces</artifactId>
  30. <version>1.8.1</version> <!-- Or 2.0-SNAPSHOT or 1.10-SNAPSHOT -->
  31. </dependency>
  32. <dependency>
  33. <groupId>org.primefaces</groupId>
  34. <artifactId>primefaces</artifactId>
  35. <version>5.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.glassfish</groupId>
  39. <artifactId>javax.faces</artifactId>
  40. <version>2.2.8</version>
  41. </dependency>
  42. </dependencies>
  43. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement