|
6 | 6 | <description>An example pom for running the lang model against Weld and WildFly</description>
|
7 | 7 | <groupId>org.jboss.weld</groupId>
|
8 | 8 | <artifactId>lang-model-tck-runner</artifactId>
|
9 |
| - <version>4.0.5-SNAPSHOT</version> |
| 9 | + <version>${cdi.tck.version}</version> |
10 | 10 |
|
11 | 11 | <properties>
|
12 | 12 | <maven.compiler.source>11</maven.compiler.source>
|
|
19 | 19 | <dependency>
|
20 | 20 | <groupId>jakarta.enterprise</groupId>
|
21 | 21 | <artifactId>cdi-tck-lang-model</artifactId>
|
22 |
| - <version>${project.version}</version> |
| 22 | + <version>${cdi.api.version}</version> |
23 | 23 | </dependency>
|
24 | 24 | <dependency>
|
25 | 25 | <groupId>org.jboss.weld</groupId>
|
|
51 | 51 | <dependency>
|
52 | 52 | <groupId>org.wildfly.arquillian</groupId>
|
53 | 53 | <artifactId>wildfly-arquillian-container-managed</artifactId>
|
54 |
| - <version>5.0.0.Alpha3</version> |
| 54 | + <version>5.0.1.Final</version> |
55 | 55 | </dependency>
|
56 | 56 | <dependency>
|
57 | 57 | <groupId>org.jboss.arquillian.protocol</groupId>
|
|
83 | 83 | <dependency>
|
84 | 84 | <groupId>org.jboss.arquillian.junit</groupId>
|
85 | 85 | <artifactId>arquillian-junit-container</artifactId>
|
86 |
| - <version>${arquillian.version}</version> |
87 | 86 | <scope>test</scope>
|
88 | 87 | </dependency>
|
89 | 88 |
|
|
170 | 169 | </dependencies>
|
171 | 170 | <build>
|
172 | 171 | <resources>
|
173 |
| - <resource> |
174 |
| - <directory>src/test/resources</directory> |
175 |
| - </resource> |
176 | 172 | <resource>
|
177 | 173 | <directory>src/test/wildfly</directory>
|
178 | 174 | </resource>
|
|
216 | 212 | </argLine>
|
217 | 213 | <properties>
|
218 | 214 | <property>
|
219 |
| - <!-- Note a 7.4.0 issue results in NPEs and useless output if you go higher than 1 here --> |
220 | 215 | <name>surefire.testng.verbose</name>
|
221 | 216 | <value>0</value>
|
222 | 217 | </property>
|
|
228 | 223 | <!-- Specified system properties are not
|
229 | 224 | available during in-container test execution -->
|
230 | 225 | <org.jboss.cdi.tck.libraryDirectory>target/dependency/lib</org.jboss.cdi.tck.libraryDirectory>
|
231 |
| - <org.jboss.cdi.tck.testDataSource>java:jboss/datasources/ExampleDS</org.jboss.cdi.tck.testDataSource> |
232 | 226 | </systemPropertyVariables>
|
233 | 227 | <systemProperties>
|
234 | 228 | <jacoco.agent>${jacoco.agent}</jacoco.agent>
|
|
241 | 235 | </systemProperties>
|
242 | 236 | </configuration>
|
243 | 237 | </plugin>
|
244 |
| - <plugin> |
245 |
| - <groupId>org.apache.maven.plugins</groupId> |
246 |
| - <artifactId>maven-resources-plugin</artifactId> |
247 |
| - <executions> |
248 |
| - <execution> |
249 |
| - <id>copy-resources</id> |
250 |
| - <!-- perform this any time before the tests are executed --> |
251 |
| - <phase>validate</phase> |
252 |
| - <goals> |
253 |
| - <goal>copy-resources</goal> |
254 |
| - </goals> |
255 |
| - <configuration> |
256 |
| - <outputDirectory>${JBOSS_HOME}/standalone/configuration</outputDirectory> |
257 |
| - <resources> |
258 |
| - <resource> |
259 |
| - <directory>${JBOSS_HOME}/docs/examples/configs</directory> |
260 |
| - <includes>standalone-activemq-embedded.xml</includes> |
261 |
| - </resource> |
262 |
| - </resources> |
263 |
| - </configuration> |
264 |
| - </execution> |
265 |
| - </executions> |
266 |
| - </plugin> |
267 |
| - |
268 | 238 | </plugins>
|
269 | 239 | </build>
|
270 | 240 | </profile>
|
|
0 commit comments