Skip to content

Commit

Permalink
feat(#3463): Implement dependency graph in the dependency view (#3514)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulischulte authored Aug 5, 2024
1 parent 49aa428 commit 02632fb
Show file tree
Hide file tree
Showing 16 changed files with 15,621 additions and 2 deletions.
16 changes: 16 additions & 0 deletions spring-boot-admin-samples/spring-boot-admin-sample-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,22 @@
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>makeAggregateBom</goal>
</goals>
</execution>
</executions>
<configuration>
<outputFormat>json</outputFormat>
<outputName>classes/bom</outputName>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,8 @@ spring:
enabled: false
# end::customization-view-settings[]

management:
endpoint:
sbom:
application:
location: classpath:bom.json
Loading

0 comments on commit 02632fb

Please sign in to comment.