|
10 | 10 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
11 | 11 | <maven.compiler.source>1.8</maven.compiler.source> |
12 | 12 | <maven.compiler.target>${maven.compiler.source}</maven.compiler.target> |
13 | | - <junit.jupiter.version>5.9.2</junit.jupiter.version> |
14 | | - <!-- exclusion expression for integration tests --> |
15 | | - <testExclusions>**/integration/*.java</testExclusions> |
| 13 | + <junit.jupiter.version>5.9.3</junit.jupiter.version> |
| 14 | + <!-- exclusion expression for e2e tests --> |
| 15 | + <testExclusions>**/e2e/*.java</testExclusions> |
16 | 16 | <module-name>${groupId}.${artifactId}</module-name> |
17 | 17 | </properties> |
18 | 18 |
|
|
109 | 109 | <dependency> |
110 | 110 | <groupId>org.junit.platform</groupId> |
111 | 111 | <artifactId>junit-platform-suite</artifactId> |
112 | | - <version>1.9.2</version> |
| 112 | + <version>1.9.3</version> |
113 | 113 | <scope>test</scope> |
114 | 114 | </dependency> |
115 | 115 |
|
|
142 | 142 | <dependency> |
143 | 143 | <groupId>dev.openfeature.contrib.providers</groupId> |
144 | 144 | <artifactId>flagd</artifactId> |
145 | | - <version>0.5.8</version> |
| 145 | + <version>0.5.9</version> |
146 | 146 | <scope>test</scope> |
147 | 147 | </dependency> |
148 | 148 | </dependencies> |
|
153 | 153 | <dependency> |
154 | 154 | <groupId>io.cucumber</groupId> |
155 | 155 | <artifactId>cucumber-bom</artifactId> |
156 | | - <version>7.11.2</version> |
| 156 | + <version>7.12.0</version> |
157 | 157 | <type>pom</type> |
158 | 158 | <scope>import</scope> |
159 | 159 | </dependency> |
160 | 160 |
|
161 | 161 | <dependency> |
162 | 162 | <groupId>org.junit</groupId> |
163 | 163 | <artifactId>junit-bom</artifactId> |
164 | | - <version>5.9.2</version> |
| 164 | + <version>5.9.3</version> |
165 | 165 | <type>pom</type> |
166 | 166 | <scope>import</scope> |
167 | 167 | </dependency> |
|
279 | 279 | <plugin> |
280 | 280 | <groupId>org.jacoco</groupId> |
281 | 281 | <artifactId>jacoco-maven-plugin</artifactId> |
282 | | - <version>0.8.9</version> |
| 282 | + <version>0.8.10</version> |
283 | 283 |
|
284 | 284 | <executions> |
285 | 285 | <execution> |
|
495 | 495 |
|
496 | 496 | <profiles> |
497 | 497 | <profile> |
498 | | - <!-- this profile handles running the flagd integration tests --> |
499 | | - <id>integration-test</id> |
| 498 | + <!-- this profile handles running the flagd e2e tests --> |
| 499 | + <id>e2e-test</id> |
500 | 500 | <properties> |
501 | | - <!-- run the integration tests by clearing the exclusions --> |
| 501 | + <!-- run the e2e tests by clearing the exclusions --> |
502 | 502 | <testExclusions/> |
503 | 503 | </properties> |
504 | 504 | <build> |
|
0 commit comments