Home / Class/ SpringBootPluginTests Class — spring-boot Architecture

SpringBootPluginTests Class — spring-boot Architecture

Architecture documentation for the SpringBootPluginTests class in SpringBootPluginTests.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

build-plugin/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/plugin/SpringBootPluginTests.java lines 37–53

@ClassPathExclusions("kotlin-daemon-client-*.jar")
class SpringBootPluginTests {

	@TempDir
	@SuppressWarnings("NullAway.Init")
	File temp;

	@Test
	void bootArchivesConfigurationsCannotBeResolved() {
		Project project = GradleProjectBuilder.builder().withProjectDir(this.temp).build();
		project.getPlugins().apply(SpringBootPlugin.class);
		Configuration bootArchives = project.getConfigurations()
			.getByName(SpringBootPlugin.BOOT_ARCHIVES_CONFIGURATION_NAME);
		assertThat(bootArchives.isCanBeResolved()).isFalse();
	}

}

Domain

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free