spring-boot-startup-report
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.maciejwalkowiak.spring</groupId> <artifactId>spring-boot-startup-report</artifactId> <version>0.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.maciejwalkowiak.spring</groupId> <artifactId>spring-boot-startup-report-parent</artifactId> <version>0.2.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>spring-boot-startup-report</artifactId> <version>0.2.0</version> <name>Spring Boot Startup Report</name> <description>Spring Boot Startup Report</description> <url>https://github.com/maciejwalkowiak/spring-boot-startup-report/</url> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>