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

configureFilePermissions() — spring-boot Function Reference

Architecture documentation for the configureFilePermissions() function in ApplicationPluginAction.java from the spring-boot codebase.

Function java GradlePlugin DslExtensions calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  a9e50b72_a261_97c9_dc84_8dc1411368b1["configureFilePermissions()"]
  bfa77d16_8b80_0139_ddea_1d50a893f40c["execute()"]
  bfa77d16_8b80_0139_ddea_1d50a893f40c -->|calls| a9e50b72_a261_97c9_dc84_8dc1411368b1
  bc1f257f_91e4_fd36_2734_6a313ee1a47f["artifactFilesToLibCopySpec()"]
  bc1f257f_91e4_fd36_2734_6a313ee1a47f -->|calls| a9e50b72_a261_97c9_dc84_8dc1411368b1
  bcf6e2a6_3e9e_3190_02fd_cf63399cea05["configureFileMode()"]
  a9e50b72_a261_97c9_dc84_8dc1411368b1 -->|calls| bcf6e2a6_3e9e_3190_02fd_cf63399cea05
  style a9e50b72_a261_97c9_dc84_8dc1411368b1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin/ApplicationPluginAction.java lines 135–142

	private void configureFilePermissions(CopySpec copySpec, int mode) {
		if (GradleVersion.current().compareTo(GradleVersion.version("8.3")) >= 0) {
			copySpec.filePermissions((filePermissions) -> filePermissions.unix(Integer.toString(mode, 8)));
		}
		else {
			configureFileMode(copySpec, mode);
		}
	}

Domain

Subdomains

Calls

  • configureFileMode()

Frequently Asked Questions

What does configureFilePermissions() do?
configureFilePermissions() is a function in the spring-boot codebase.
What does configureFilePermissions() call?
configureFilePermissions() calls 1 function(s): configureFileMode.
What calls configureFilePermissions()?
configureFilePermissions() is called by 2 function(s): artifactFilesToLibCopySpec, execute.

Analyze Your Own Codebase

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

Try Supermodel Free