Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for excludeMapFor (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationExtensions.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl
    
    import org.gradle.api.artifacts.Configuration
    import org.gradle.api.artifacts.ModuleDependency
    
    import org.gradle.kotlin.dsl.support.excludeMapFor
    
    
    /**
     * Adds an exclude rule to exclude transitive dependencies for all dependencies of this configuration.
     * You can also add exclude rules per-dependency. See [ModuleDependency.exclude].
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/Maps.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.support
    
    
    internal
    fun excludeMapFor(group: String?, module: String?): Map<String, String> =
        mapOfNonNullValuesOf(
            "group" to group,
            "module" to module
        )
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top