Guest User

Untitled

a guest
Apr 5th, 2016
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.99 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>com.crm.website</groupId>
  5. <artifactId>Crm_site</artifactId>
  6. <packaging>war</packaging>
  7. <version>1.0</version>
  8. <name>Crm_site</name>
  9. <dependencies>
  10. <dependency>
  11. <groupId>javax.faces</groupId>
  12. <artifactId>javax.faces-api</artifactId>
  13. <version>2.2</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.glassfish</groupId>
  17. <artifactId>javax.faces</artifactId>
  18. <version>2.3.0-m05</version>
  19. <scope>runtime</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>4.12</version>
  25. <scope>test</scope>
  26. <type>jar</type>
  27. </dependency>
  28. <dependency>
  29. <groupId>postgresql</groupId>
  30. <artifactId>postgresql</artifactId>
  31. <version>9.2-1002.jdbc4</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>javax</groupId>
  36. <artifactId>javaee-web-api</artifactId>
  37. <version>7.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>javax.enterprise</groupId>
  41. <artifactId>cdi-api</artifactId>
  42. <version>1.2</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.jboss.weld.servlet</groupId>
  47. <artifactId>weld-servlet</artifactId>
  48. <version>2.3.3.Final</version>
  49. <scope>runtime</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>javax.servlet</groupId>
  53. <artifactId>jstl</artifactId>
  54. <version>1.2</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.sun.el</groupId>
  58. <artifactId>el-ri</artifactId>
  59. <version>1.0</version>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <finalName>Crm_site</finalName>
  64. <plugins>
  65. <plugin>
  66. <artifactId>maven-war-plugin</artifactId>
  67. <version>2.6</version>
  68. <configuration>
  69. <packagingExcludes>WEB-INF/web.xml</packagingExcludes>
  70. </configuration>
  71. </plugin>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.5.1</version>
  76. <configuration>
  77. <source>1.8</source>
  78. <target>1.8</target>
  79. <encoding>${project.build.sourceEncoding}</encoding>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-resources-plugin</artifactId>
  85. <version>2.7</version>
  86. <configuration>
  87. <encoding>${project.build.sourceEncoding}</encoding>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. <properties>
  93. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  94. </properties>
  95. <repositories>
  96. <repository>
  97. <id>sonatype-releases</id>
  98. <url>https://oss.sonatype.org/content/repositories/releases/</url>
  99. </repository>
  100. <repository>
  101. <id>java.net</id>
  102. <url>https://maven.java.net/content/repositories/public/</url>
  103. </repository>
  104. <repository>
  105. <id>JBoss repository</id>
  106. <url>http://repository.jboss.org/nexus/content/groups/public/</url>
  107. </repository>
  108. </repositories>
  109. </project>
Advertisement
Add Comment
Please, Sign In to add comment