Home / Function/ manifest() — spring-boot Function Reference

manifest() — spring-boot Function Reference

Architecture documentation for the manifest() function in AbstractArchiveIntegrationTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  4f774648_ded7_df5c_3421_f9b7b64a8391["manifest()"]
  ab2d861f_92d2_7163_0173_c0e9c03020e7["withJarFile()"]
  4f774648_ded7_df5c_3421_f9b7b64a8391 -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7
  ac38c41c_e501_2e7b_6e57_b953a3ed5522["ManifestAssert()"]
  4f774648_ded7_df5c_3421_f9b7b64a8391 -->|calls| ac38c41c_e501_2e7b_6e57_b953a3ed5522
  style 4f774648_ded7_df5c_3421_f9b7b64a8391 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/AbstractArchiveIntegrationTests.java lines 187–197

		JarAssert manifest(Consumer<ManifestAssert> consumer) {
			withJarFile((jarFile) -> {
				try {
					consumer.accept(new ManifestAssert(jarFile.getManifest()));
				}
				catch (IOException ex) {
					throw new RuntimeException(ex);
				}
			});
			return this;
		}

Domain

Subdomains

Calls

Frequently Asked Questions

What does manifest() do?
manifest() is a function in the spring-boot codebase.
What does manifest() call?
manifest() calls 2 function(s): ManifestAssert, withJarFile.

Analyze Your Own Codebase

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

Try Supermodel Free