Skip to content

Commit a949357

Browse files
committed
[pom] Manage byte-buddy directly as sensitive to differences
our order prevented exposure for now but this set is very fragile if it differs. Today assertj and mockito are using but that could always change, so directly having them helps. Further byte buddy agent will need added to argline so this is gong to be necessary anyways.
1 parent c42566c commit a949357

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@
132132

133133
<properties>
134134
<clirr.comparisonVersion>3.4.6</clirr.comparisonVersion>
135+
136+
<byte-buddy.version>1.14.10</byte-buddy.version>
135137
<derby.version>10.17.1.0</derby.version>
136138
<log4j.version>2.22.0</log4j.version>
137139
<mssql-jdbc.version>12.4.2.jre11</mssql-jdbc.version>
@@ -266,6 +268,18 @@
266268
<version>3.24.2</version>
267269
<scope>test</scope>
268270
</dependency>
271+
<dependency>
272+
<groupId>net.bytebuddy</groupId>
273+
<artifactId>byte-buddy</artifactId>
274+
<version>${byte-buddy.version}</version>
275+
<scope>test</scope>
276+
</dependency>
277+
<dependency>
278+
<groupId>net.bytebuddy</groupId>
279+
<artifactId>byte-buddy-agent</artifactId>
280+
<version>${byte-buddy.version}</version>
281+
<scope>test</scope>
282+
</dependency>
269283
<dependency>
270284
<groupId>com.github.hazendaz.catch-exception</groupId>
271285
<artifactId>catch-exception</artifactId>

0 commit comments

Comments
 (0)