Skip to content

Commit 891e2b2

Browse files
committed
Refactoring
1 parent 1a7f23a commit 891e2b2

File tree

2 files changed

+12
-18
lines changed

2 files changed

+12
-18
lines changed

driver/pom.xml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,6 @@
7979
<groupId>org.junit.jupiter</groupId>
8080
<artifactId>junit-jupiter</artifactId>
8181
</dependency>
82-
<dependency>
83-
<groupId>org.junit.support</groupId>
84-
<artifactId>testng-engine</artifactId>
85-
</dependency>
8682
<dependency>
8783
<groupId>org.rauschig</groupId>
8884
<artifactId>jarchivelib</artifactId>
@@ -152,6 +148,18 @@
152148
</configuration>
153149
</execution>
154150
</executions>
151+
<dependencies>
152+
<dependency>
153+
<groupId>org.apache.maven.surefire</groupId>
154+
<artifactId>surefire-junit-platform</artifactId>
155+
<version>${surefire.and.failsafe.version}</version>
156+
</dependency>
157+
<dependency>
158+
<groupId>org.apache.maven.surefire</groupId>
159+
<artifactId>surefire-testng</artifactId>
160+
<version>${surefire.and.failsafe.version}</version>
161+
</dependency>
162+
</dependencies>
155163
</plugin>
156164
<plugin>
157165
<groupId>org.apache.maven.plugins</groupId>

pom.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
<hamcrest.version>2.2</hamcrest.version>
4646
<mockito-core.version>5.4.0</mockito-core.version>
4747
<junit.version>5.10.0</junit.version>
48-
<testng-engine.version>1.0.4</testng-engine.version>
4948
<jarchivelib.version>1.2.0</jarchivelib.version>
5049
<bouncycastle-jdk15on.version>1.70</bouncycastle-jdk15on.version>
5150
<logback-classic.version>1.2.12</logback-classic.version>
@@ -152,19 +151,6 @@
152151
<version>${junit.version}</version>
153152
<scope>test</scope>
154153
</dependency>
155-
<dependency>
156-
<groupId>org.junit.support</groupId>
157-
<artifactId>testng-engine</artifactId>
158-
<version>${testng-engine.version}</version>
159-
<exclusions>
160-
<exclusion>
161-
<!-- Use the version supplied by the org.junit.jupiter:junit-jupiter -->
162-
<groupId>org.junit.platform</groupId>
163-
<artifactId>junit-platform-engine</artifactId>
164-
</exclusion>
165-
</exclusions>
166-
<scope>test</scope>
167-
</dependency>
168154
<dependency>
169155
<groupId>org.rauschig</groupId>
170156
<artifactId>jarchivelib</artifactId>

0 commit comments

Comments
 (0)