Skip to content

Commit 91ec467

Browse files
BFD-4366: Force child projects to resolve newer version of ASM (#2854)
1 parent 32abc45 commit 91ec467

3 files changed

Lines changed: 22 additions & 1 deletion

File tree

apps/bfd-db-migrator/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,13 @@
235235
<!-- Used to build docker image for the project. -->
236236
<groupId>com.google.cloud.tools</groupId>
237237
<artifactId>jib-maven-plugin</artifactId>
238+
<dependencies>
239+
<dependency>
240+
<groupId>org.ow2.asm</groupId>
241+
<artifactId>asm</artifactId>
242+
<version>${asm.version}</version>
243+
</dependency>
244+
</dependencies>
238245
<executions>
239246
<execution>
240247
<id>build-image</id>

apps/bfd-pipeline/bfd-pipeline-app/pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
</dependency>
7676

7777
<dependency>
78-
<!-- Used to collect metrics in a registry that can be transmitted to CloudWatch efficiently. -->
78+
<!-- Used to collect metrics in a registry that can be transmitted to CloudWatch efficiently. -->
7979
<groupId>io.micrometer</groupId>
8080
<artifactId>micrometer-core</artifactId>
8181
</dependency>
@@ -230,6 +230,13 @@
230230
<!-- Used to build docker image for the project. -->
231231
<groupId>com.google.cloud.tools</groupId>
232232
<artifactId>jib-maven-plugin</artifactId>
233+
<dependencies>
234+
<dependency>
235+
<groupId>org.ow2.asm</groupId>
236+
<artifactId>asm</artifactId>
237+
<version>${asm.version}</version>
238+
</dependency>
239+
</dependencies>
233240
<executions>
234241
<execution>
235242
<id>build-image</id>

apps/bfd-server/bfd-server-image/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@
6060
<!-- Used to build docker image for the project. -->
6161
<groupId>com.google.cloud.tools</groupId>
6262
<artifactId>jib-maven-plugin</artifactId>
63+
<dependencies>
64+
<dependency>
65+
<groupId>org.ow2.asm</groupId>
66+
<artifactId>asm</artifactId>
67+
<version>${asm.version}</version>
68+
</dependency>
69+
</dependencies>
6370
<configuration>
6471
<to>
6572
<image>${jib.namespace}${image-name}:${project.version}</image>

0 commit comments

Comments
 (0)