Advertisement
Guest User

Untitled

a guest
Jan 6th, 2011
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. <profile>
  2. <id>weld-test</id>
  3. <dependencies>
  4. <dependency>
  5. <groupId>org.jboss.weld.arquillian.container</groupId>
  6. <artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
  7. <version>1.1.0.CR4</version>
  8. </dependency>
  9. <dependency>
  10. <groupId>commons-httpclient</groupId>
  11. <artifactId>commons-httpclient</artifactId>
  12. <version>3.1</version>
  13. <scope>test</scope>
  14. </dependency>
  15.  
  16. <dependency>
  17. <groupId>org.jboss.weld</groupId>
  18. <artifactId>weld-core</artifactId>
  19. <version>1.1.0.CR4</version>
  20. </dependency>
  21.  
  22. <dependency>
  23. <groupId>org.jboss.weld</groupId>
  24. <artifactId>weld-api</artifactId>
  25. <version>1.1.Beta2</version>
  26. </dependency>
  27.  
  28. <dependency>
  29. <groupId>org.slf4j</groupId>
  30. <artifactId>slf4j-simple</artifactId>
  31. <version>1.5.10</version>
  32. </dependency>
  33.  
  34. <dependency>
  35. <groupId>javax.el</groupId>
  36. <artifactId>el-api</artifactId>
  37. <version>2.2</version>
  38. <scope>test</scope>
  39. </dependency>
  40.  
  41. <dependency>
  42. <groupId>org.glassfish.web</groupId>
  43. <artifactId>el-impl</artifactId>
  44. <version>2.1.2-b04</version>
  45. <scope>test</scope>
  46. </dependency>
  47.  
  48. <dependency>
  49. <groupId>org.jboss.spec.javax.servlet</groupId>
  50. <artifactId>jboss-servlet-api_3.0_spec</artifactId>
  51. <version>1.0.0.Beta2</version>
  52. <scope>compile</scope>
  53. </dependency>
  54.  
  55. <dependency>
  56. <groupId>javax.validation</groupId>
  57. <artifactId>validation-api</artifactId>
  58. <version>1.0.0.GA</version>
  59. <scope>compile</scope>
  60. </dependency>
  61.  
  62. <dependency>
  63. <groupId>javax.transaction</groupId>
  64. <artifactId>jta</artifactId>
  65. <version>1.1</version>
  66. <scope>test</scope>
  67. </dependency>
  68.  
  69. <dependency>
  70. <groupId>javax.persistence</groupId>
  71. <artifactId>persistence-api</artifactId>
  72. <version>1.0</version>
  73. <scope>test</scope>
  74. </dependency>
  75.  
  76. <dependency>
  77. <groupId>org.jboss.ejb3</groupId>
  78. <artifactId>jboss-ejb3-api</artifactId>
  79. <version>3.1.0</version>
  80. <scope>test</scope>
  81. </dependency>
  82. </dependencies>
  83.  
  84. <dependencyManagement>
  85. <dependencies>
  86. <dependency>
  87. <groupId>org.jboss.weld</groupId>
  88. <artifactId>weld-core-bom</artifactId>
  89. <version>1.1.0.CR4</version>
  90. <type>pom</type>
  91. <scope>import</scope>
  92. </dependency>
  93. </dependencies>
  94. </dependencyManagement>
  95. <build>
  96. <testResources>
  97. <testResource>
  98. <directory>src/test/resources</directory>
  99. </testResource>
  100. <testResource>
  101. <directory>src/test/resources-jbossas</directory>
  102. </testResource>
  103. </testResources>
  104. <plugins>
  105. <plugin>
  106. <artifactId>maven-surefire-plugin</artifactId>
  107. <configuration>
  108. <skip>false</skip>
  109. <systemProperties>
  110. <property>
  111. <name>arquillian.logging</name>
  112. <value>system</value>
  113. </property>
  114. </systemProperties>
  115. </configuration>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </profile>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement