|
27 | 27 | </parent> |
28 | 28 |
|
29 | 29 | <artifactId>glassfish-external-tck-microprofile-health</artifactId> |
30 | | - <packaging>jar</packaging> |
31 | | - |
32 | 30 | <name>TCK: MicroProfile Health</name> |
33 | 31 |
|
34 | 32 | <dependencies> |
35 | | - <!-- Required dependencies for Arquillian deployments --> |
36 | | - <dependency> |
37 | | - <groupId>org.jboss.weld</groupId> |
38 | | - <artifactId>weld-core-impl</artifactId> |
39 | | - </dependency> |
40 | | - |
41 | 33 | <dependency> |
42 | 34 | <groupId>org.eclipse.microprofile.health</groupId> |
43 | 35 | <artifactId>microprofile-health-tck</artifactId> |
44 | 36 | <version>4.0.1</version> |
| 37 | + <scope>test</scope> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>ee.omnifish.arquillian</groupId> |
| 41 | + <artifactId>arquillian-glassfish-server-managed</artifactId> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.jboss.arquillian.protocol</groupId> |
| 45 | + <artifactId>arquillian-protocol-servlet-jakarta</artifactId> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.jboss.shrinkwrap.resolver</groupId> |
| 49 | + <artifactId>shrinkwrap-resolver-impl-maven</artifactId> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.jboss.arquillian.container</groupId> |
| 53 | + <artifactId>arquillian-container-spi</artifactId> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.jboss.arquillian.test</groupId> |
| 57 | + <artifactId>arquillian-test-spi</artifactId> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.jboss.arquillian.container</groupId> |
| 61 | + <artifactId>arquillian-container-test-impl-base</artifactId> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.glassfish.main</groupId> |
| 65 | + <artifactId>glassfish-jul-extension</artifactId> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>org.hamcrest</groupId> |
| 69 | + <artifactId>hamcrest</artifactId> |
| 70 | + </dependency> |
| 71 | + |
| 72 | + <dependency> |
| 73 | + <groupId>jakarta.enterprise</groupId> |
| 74 | + <artifactId>jakarta.enterprise.cdi-api</artifactId> |
| 75 | + <scope>provided</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>jakarta.servlet</groupId> |
| 79 | + <artifactId>jakarta.servlet-api</artifactId> |
| 80 | + <scope>provided</scope> |
45 | 81 | </dependency> |
46 | 82 | <dependency> |
47 | 83 | <groupId>org.eclipse.microprofile.health</groupId> |
48 | 84 | <artifactId>microprofile-health-api</artifactId> |
49 | 85 | <scope>provided</scope> |
50 | 86 | </dependency> |
| 87 | + <!-- Runtime test dependency of HealthCheckResponseValidationTest --> |
51 | 88 | <dependency> |
52 | | - <groupId>org.hamcrest</groupId> |
53 | | - <artifactId>hamcrest</artifactId> |
| 89 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 90 | + <artifactId>jackson-datatype-jdk8</artifactId> |
| 91 | + <version>2.15.2</version> |
| 92 | + <scope>test</scope> |
54 | 93 | </dependency> |
55 | 94 | </dependencies> |
56 | 95 |
|
|
59 | 98 | <plugin> |
60 | 99 | <artifactId>maven-dependency-plugin</artifactId> |
61 | 100 | <executions> |
62 | | - <!-- Unpack the GF install --> |
63 | 101 | <execution> |
64 | 102 | <id>unpack-glassfish</id> |
65 | 103 | </execution> |
|
0 commit comments