Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>net.proselyte.tutorials</groupId>
  5. <artifactId>FirstJSFApp</artifactId>
  6. <packaging>war</packaging>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>FirstJSFApp Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.sun.faces</groupId>
  13. <artifactId>jsf-api</artifactId>
  14. <version>2.1.7</version>
  15. </dependency>
  16.  
  17. <dependency>
  18. <groupId>com.sun.faces</groupId>
  19. <artifactId>jsf-impl</artifactId>
  20. <version>2.1.7</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.jcraft</groupId>
  24. <artifactId>jsch</artifactId>
  25. <version>0.1.55</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.primefaces</groupId>
  29. <artifactId>primefaces</artifactId>
  30. <version>7.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>junit</groupId>
  34. <artifactId>junit</artifactId>
  35. <version>3.8.1</version>
  36. <scope>test</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.oracle.ojdbc</groupId>
  40. <artifactId>ojdbc8</artifactId>
  41. <version>19.3.0.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.oracle.ojdbc</groupId>
  45. <artifactId>orai18n</artifactId>
  46. <version>19.3.0.0</version>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <finalName>lab3</finalName>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-compiler-plugin</artifactId>
  55. <version>2.3.1</version>
  56. <configuration>
  57. <source>1.8</source>
  58. <target>1.8</target>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement