Advertisement
Guest User

Untitled

a guest
Nov 17th, 2012
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.19 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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <groupId>pcg</groupId>
  6. <artifactId>RS</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>war</packaging>
  9.  
  10. <name>RS</name>
  11.  
  12. <properties>
  13. <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16.  
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.richfaces.ui</groupId>
  20. <artifactId>richfaces-components-ui</artifactId>
  21. <version>4.2.0.Final</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.richfaces.core</groupId>
  25. <artifactId>richfaces-core-impl</artifactId>
  26. <version>4.2.0.Final</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.hibernate</groupId>
  30. <artifactId>hibernate</artifactId>
  31. <version>3.2.5.ga</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.hibernate</groupId>
  35. <artifactId>hibernate-entitymanager</artifactId>
  36. <version>3.3.2.GA</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>javax.sql</groupId>
  40. <artifactId>jdbc-stdext</artifactId>
  41. <version>2.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.transaction</groupId>
  45. <artifactId>jta</artifactId>
  46. <version>1.0.1B</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.hibernate</groupId>
  50. <artifactId>ejb3-persistence</artifactId>
  51. <version>1.0.1.GA</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>unknown.binary</groupId>
  55. <artifactId>mysql-connector-java-5.1.18-bin</artifactId>
  56. <version>SNAPSHOT</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>dom4j</groupId>
  60. <artifactId>dom4j</artifactId>
  61. <version>1.6.1-jboss</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>javax</groupId>
  65. <artifactId>javaee-web-api</artifactId>
  66. <version>6.0</version>
  67. <scope>provided</scope>
  68. </dependency>
  69. </dependencies>
  70.  
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>2.3.2</version>
  77. <configuration>
  78. <source>1.6</source>
  79. <target>1.6</target>
  80. <compilerArguments>
  81. <endorseddirs>${endorsed.dir}</endorseddirs>
  82. </compilerArguments>
  83. </configuration>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-war-plugin</artifactId>
  88. <version>2.1.1</version>
  89. <configuration>
  90. <failOnMissingWebXml>false</failOnMissingWebXml>
  91. </configuration>
  92. </plugin>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-dependency-plugin</artifactId>
  96. <version>2.1</version>
  97. <executions>
  98. <execution>
  99. <phase>validate</phase>
  100. <goals>
  101. <goal>copy</goal>
  102. </goals>
  103. <configuration>
  104. <outputDirectory>${endorsed.dir}</outputDirectory>
  105. <silent>true</silent>
  106. <artifactItems>
  107. <artifactItem>
  108. <groupId>javax</groupId>
  109. <artifactId>javaee-endorsed-api</artifactId>
  110. <version>6.0</version>
  111. <type>jar</type>
  112. </artifactItem>
  113. </artifactItems>
  114. </configuration>
  115. </execution>
  116. </executions>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. <repositories>
  121. <repository>
  122. <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
  123. <id>richfaces library</id>
  124. <layout>default</layout>
  125. <name>Repository for library richfaces library</name>
  126. </repository>
  127. <repository>
  128. <id>unknown-jars-temp-repo</id>
  129. <name>A temporary repository created by NetBeans for libraries and jars it could not identify. Please replace the dependencies in this repository with correct ones and delete this repository.</name>
  130. <url>file:${project.basedir}/lib</url>
  131. </repository>
  132. </repositories>
  133. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement