Skip to content

Commit 4072d2d

Browse files
committedMay 1, 2025
Exclude powermock
1 parent c1cfb45 commit 4072d2d

File tree

1 file changed

+42
-1
lines changed

1 file changed

+42
-1
lines changed
 

‎pom.xml

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838

3939
<properties>
4040
<openmrsPlatformVersion>2.7.3</openmrsPlatformVersion>
41-
<springVersion>5.3.30</springVersion>
4241
<handlebarsVersion>1.3.1</handlebarsVersion>
4342
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4443
</properties>
@@ -95,6 +94,16 @@
9594
<version>${openmrsPlatformVersion}</version>
9695
<type>test-jar</type>
9796
<scope>test</scope>
97+
<exclusions>
98+
<exclusion>
99+
<groupId>org.powermock</groupId>
100+
<artifactId>powermock-api-mockito</artifactId>
101+
</exclusion>
102+
<exclusion>
103+
<groupId>org.powermock</groupId>
104+
<artifactId>powermock-api-mockito2</artifactId>
105+
</exclusion>
106+
</exclusions>
98107
</dependency>
99108

100109
<dependency>
@@ -103,6 +112,16 @@
103112
<version>${openmrsPlatformVersion}</version>
104113
<type>test-jar</type>
105114
<scope>test</scope>
115+
<exclusions>
116+
<exclusion>
117+
<groupId>org.powermock</groupId>
118+
<artifactId>powermock-api-mockito</artifactId>
119+
</exclusion>
120+
<exclusion>
121+
<groupId>org.powermock</groupId>
122+
<artifactId>powermock-api-mockito2</artifactId>
123+
</exclusion>
124+
</exclusions>
106125
</dependency>
107126

108127
<dependency>
@@ -111,6 +130,17 @@
111130
<version>${openmrsPlatformVersion}</version>
112131
<type>pom</type>
113132
<scope>test</scope>
133+
134+
<exclusions>
135+
<exclusion>
136+
<groupId>org.powermock</groupId>
137+
<artifactId>powermock-api-mockito</artifactId>
138+
</exclusion>
139+
<exclusion>
140+
<groupId>org.powermock</groupId>
141+
<artifactId>powermock-api-mockito2</artifactId>
142+
</exclusion>
143+
</exclusions>
114144
</dependency>
115145

116146
<!-- End OpenMRS core -->
@@ -160,6 +190,17 @@
160190
</exclusions>
161191
</dependency>
162192

193+
<dependency>
194+
<groupId>net.bytebuddy</groupId>
195+
<artifactId>byte-buddy</artifactId>
196+
<version>1.15.10</version>
197+
</dependency>
198+
<dependency>
199+
<groupId>net.bytebuddy</groupId>
200+
<artifactId>byte-buddy-agent</artifactId>
201+
<version>1.15.10</version>
202+
</dependency>
203+
163204
</dependencies>
164205
</dependencyManagement>
165206

0 commit comments

Comments
 (0)