Skip to content

Commit f4bb5ea

Browse files
committed
Removing unnecessary imports
1 parent 9dbb9f7 commit f4bb5ea

File tree

2 files changed

+8
-38
lines changed

2 files changed

+8
-38
lines changed

iam/iam-client/pom.xml

Lines changed: 8 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,23 @@
2828
<dependency>
2929
<groupId>org.projectlombok</groupId>
3030
<artifactId>lombok</artifactId>
31+
<version>1.18.34</version>
32+
<scope>provided</scope>
3133
</dependency>
3234

3335
<!-- Test dependencies -->
34-
<dependency>
35-
<groupId>org.junit.jupiter</groupId>
36-
<artifactId>junit-jupiter-api</artifactId>
37-
<version>5.12.1</version>
38-
<scope>test</scope>
39-
</dependency>
4036
<dependency>
4137
<groupId>org.mockito</groupId>
4238
<artifactId>mockito-core</artifactId>
4339
<version>5.16.1</version>
4440
<scope>test</scope>
4541
</dependency>
42+
<dependency>
43+
<groupId>org.junit.jupiter</groupId>
44+
<artifactId>junit-jupiter-api</artifactId>
45+
<version>5.12.1</version>
46+
<scope>test</scope>
47+
</dependency>
4648
<dependency>
4749
<groupId>org.mockito</groupId>
4850
<artifactId>mockito-junit-jupiter</artifactId>
@@ -72,32 +74,6 @@
7274
</executions>
7375
</plugin>
7476

75-
<plugin>
76-
<groupId>org.apache.maven.plugins</groupId>
77-
<artifactId>maven-surefire-plugin</artifactId>
78-
<version>3.4.0</version>
79-
</plugin>
80-
<plugin>
81-
<groupId>org.apache.maven.plugins</groupId>
82-
<artifactId>maven-failsafe-plugin</artifactId>
83-
<version>3.4.0</version>
84-
<executions>
85-
<execution>
86-
<id>run-integration-tests</id>
87-
<phase>integration-test</phase>
88-
<goals>
89-
<goal>integration-test</goal>
90-
</goals>
91-
</execution>
92-
<execution>
93-
<id>verify-integration-results</id>
94-
<phase>verify</phase>
95-
<goals>
96-
<goal>verify</goal>
97-
</goals>
98-
</execution>
99-
</executions>
100-
</plugin>
10177
</plugins>
10278
</build>
10379
</project>

pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,6 @@
166166
<version>${project.version}</version>
167167
<type>test-jar</type>
168168
</dependency>
169-
<dependency>
170-
<groupId>org.projectlombok</groupId>
171-
<artifactId>lombok</artifactId>
172-
<version>1.18.34</version>
173-
<scope>provided</scope>
174-
</dependency>
175169
</dependencies>
176170
</dependencyManagement>
177171
<build>

0 commit comments

Comments
 (0)