|
4 | 4 | <properties>
|
5 | 5 | <project.Automatic-Module-Name>io.cucumber.cdi.jakarta</project.Automatic-Module-Name>
|
6 | 6 | <openwebbeans.version>2.0.21</openwebbeans.version>
|
7 |
| - <jakarta.enterprise.cdi-api.version>3.0.0-M3</jakarta.enterprise.cdi-api.version> |
| 7 | + <jakarta.enterprise.cdi-api.version>3.0.0</jakarta.enterprise.cdi-api.version> |
8 | 8 | <jakarta.activation-api.version>2.0.0</jakarta.activation-api.version>
|
9 |
| - <xbean.version>4.18</xbean.version> |
| 9 | + <weld.version>4.0.0.Final</weld.version> |
10 | 10 | </properties>
|
11 | 11 |
|
12 | 12 | <parent>
|
|
41 | 41 | <version>${jakarta.activation-api.version}</version>
|
42 | 42 | <scope>provided</scope>
|
43 | 43 | </dependency>
|
44 |
| - |
45 |
| - <dependency> |
46 |
| - <groupId>org.apache.xbean</groupId> |
47 |
| - <artifactId>xbean-finder-shaded</artifactId> |
48 |
| - <version>${xbean.version}</version> |
49 |
| - <scope>test</scope> |
50 |
| - </dependency> |
51 |
| - <dependency> |
52 |
| - <groupId>org.apache.xbean</groupId> |
53 |
| - <artifactId>xbean-asm9-shaded</artifactId> |
54 |
| - <version>${xbean.version}</version> |
55 |
| - <scope>test</scope> |
56 |
| - </dependency> |
57 |
| - <dependency> |
58 |
| - <groupId>org.apache.openwebbeans</groupId> |
59 |
| - <artifactId>openwebbeans-impl</artifactId> |
60 |
| - <version>${openwebbeans.version}</version> |
61 |
| - <scope>test</scope> |
62 |
| - <classifier>jakarta</classifier> |
63 |
| - <exclusions> |
64 |
| - <exclusion> |
65 |
| - <groupId>*</groupId> |
66 |
| - <artifactId>*</artifactId> |
67 |
| - </exclusion> |
68 |
| - </exclusions> |
69 |
| - </dependency> |
70 |
| - <dependency> |
71 |
| - <groupId>org.apache.openwebbeans</groupId> |
72 |
| - <artifactId>openwebbeans-spi</artifactId> |
73 |
| - <version>${openwebbeans.version}</version> |
74 |
| - <scope>test</scope> |
75 |
| - <classifier>jakarta</classifier> |
76 |
| - <exclusions> |
77 |
| - <exclusion> |
78 |
| - <groupId>*</groupId> |
79 |
| - <artifactId>*</artifactId> |
80 |
| - </exclusion> |
81 |
| - </exclusions> |
82 |
| - </dependency> |
83 |
| - <dependency> |
84 |
| - <groupId>org.apache.openwebbeans</groupId> |
85 |
| - <artifactId>openwebbeans-se</artifactId> |
86 |
| - <version>${openwebbeans.version}</version> |
87 |
| - <classifier>jakarta</classifier> |
88 |
| - <scope>test</scope> |
89 |
| - <exclusions> |
90 |
| - <exclusion> |
91 |
| - <groupId>*</groupId> |
92 |
| - <artifactId>*</artifactId> |
93 |
| - </exclusion> |
94 |
| - </exclusions> |
95 |
| - </dependency> |
96 | 44 | <dependency>
|
97 | 45 | <groupId>io.cucumber</groupId>
|
98 | 46 | <artifactId>cucumber-java</artifactId>
|
99 | 47 | <scope>test</scope>
|
100 | 48 | </dependency>
|
101 | 49 | <dependency>
|
102 | 50 | <groupId>io.cucumber</groupId>
|
103 |
| - <artifactId>cucumber-junit</artifactId> |
| 51 | + <artifactId>cucumber-junit-platform-engine</artifactId> |
104 | 52 | <scope>test</scope>
|
105 | 53 | </dependency>
|
106 | 54 | <dependency>
|
|
109 | 57 | <scope>test</scope>
|
110 | 58 | </dependency>
|
111 | 59 | <dependency>
|
112 |
| - <groupId>org.junit.vintage</groupId> |
113 |
| - <artifactId>junit-vintage-engine</artifactId> |
| 60 | + <groupId>org.hamcrest</groupId> |
| 61 | + <artifactId>hamcrest-core</artifactId> |
114 | 62 | <scope>test</scope>
|
115 | 63 | </dependency>
|
116 | 64 | </dependencies>
|
| 65 | + |
| 66 | + <profiles> |
| 67 | + <profile> |
| 68 | + <id>jakarta-cdi-openwebbeans</id> |
| 69 | + <activation> |
| 70 | + <activeByDefault>true</activeByDefault> |
| 71 | + </activation> |
| 72 | + <properties> |
| 73 | + <xbean.version>4.18</xbean.version> |
| 74 | + </properties> |
| 75 | + <dependencies> |
| 76 | + <dependency> |
| 77 | + <groupId>org.apache.openwebbeans</groupId> |
| 78 | + <artifactId>openwebbeans-se</artifactId> |
| 79 | + <version>${openwebbeans.version}</version> |
| 80 | + <classifier>jakarta</classifier> |
| 81 | + <scope>test</scope> |
| 82 | + <exclusions> |
| 83 | + <exclusion> |
| 84 | + <groupId>*</groupId> |
| 85 | + <artifactId>*</artifactId> |
| 86 | + </exclusion> |
| 87 | + </exclusions> |
| 88 | + </dependency> |
| 89 | + <dependency> |
| 90 | + <groupId>org.apache.openwebbeans</groupId> |
| 91 | + <artifactId>openwebbeans-impl</artifactId> |
| 92 | + <version>${openwebbeans.version}</version> |
| 93 | + <scope>test</scope> |
| 94 | + <classifier>jakarta</classifier> |
| 95 | + <exclusions> |
| 96 | + <exclusion> |
| 97 | + <groupId>*</groupId> |
| 98 | + <artifactId>*</artifactId> |
| 99 | + </exclusion> |
| 100 | + </exclusions> |
| 101 | + </dependency> |
| 102 | + <dependency> |
| 103 | + <groupId>org.apache.openwebbeans</groupId> |
| 104 | + <artifactId>openwebbeans-spi</artifactId> |
| 105 | + <version>${openwebbeans.version}</version> |
| 106 | + <scope>test</scope> |
| 107 | + <classifier>jakarta</classifier> |
| 108 | + <exclusions> |
| 109 | + <exclusion> |
| 110 | + <groupId>*</groupId> |
| 111 | + <artifactId>*</artifactId> |
| 112 | + </exclusion> |
| 113 | + </exclusions> |
| 114 | + </dependency> |
| 115 | + <dependency> |
| 116 | + <groupId>org.apache.xbean</groupId> |
| 117 | + <artifactId>xbean-finder-shaded</artifactId> |
| 118 | + <version>${xbean.version}</version> |
| 119 | + <scope>test</scope> |
| 120 | + </dependency> |
| 121 | + <dependency> |
| 122 | + <groupId>org.apache.xbean</groupId> |
| 123 | + <artifactId>xbean-asm9-shaded</artifactId> |
| 124 | + <version>${xbean.version}</version> |
| 125 | + <scope>test</scope> |
| 126 | + </dependency> |
| 127 | + </dependencies> |
| 128 | + </profile> |
| 129 | + |
| 130 | + <profile> |
| 131 | + <id>jakarta-cdi-weld</id> |
| 132 | + <dependencies> |
| 133 | + <dependency> |
| 134 | + <groupId>org.jboss.weld.se</groupId> |
| 135 | + <artifactId>weld-se-core</artifactId> |
| 136 | + <version>${weld.version}</version> |
| 137 | + <scope>test</scope> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>org.jboss.weld</groupId> |
| 141 | + <artifactId>weld-core-impl</artifactId> |
| 142 | + <version>${weld.version}</version> |
| 143 | + <scope>test</scope> |
| 144 | + </dependency> |
| 145 | + </dependencies> |
| 146 | + </profile> |
| 147 | + </profiles> |
117 | 148 | </project>
|
0 commit comments