# mklink **Repository Path**: moxun1639/mklink ## Basic Information - **Project Name**: mklink - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-01 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mklink Create a symbolic link for gradle config like this plugins { id "com.mxstrive.gradle.mklink-plugin" version "1.0.4" } mklink { // next task, which depends on mklink next = '*' // Specifies the new symbolic link name link = "${project.projectDir}\\build" // Specifies the path (relative or absolute) that the new link refers to. target = "R:\\Build\\${project.name}" // [optional] Allow build continue when the root path of target not exist allowNoRootPath = true }