contents

abstract fun contents(action: Action<in CopySpec>): CopySpec(source)

Configures the contents of the distribution.

Can be used to configure the contents of the distribution:

plugins {
    id 'distribution'
}

distributions {
    main {
        contents {
            from "src/readme"
        }
    }
}
The DSL inside the contents\{} block is the same DSL used for Copy tasks.