-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Environment fixes and run-configs come back
- Loading branch information
Showing
26 changed files
with
599 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
Gradle IDEA extension | ||
Created: 18th April, 2023 | ||
License: MIT - Please refer to <https://opensource.org/licenses/MIT> | ||
Copyright·(c)·2024,·HSPyLib | ||
*/ | ||
|
||
/* Export Run Configurations */ | ||
task exportRunConfigurations(type: Copy) { | ||
group = 'Idea' | ||
description = "Export run configurations" | ||
from("${rootDir}/.idea/runConfigurations") { | ||
include '*.xml' | ||
} | ||
into "${rootDir}/run-configs/idea" | ||
} | ||
|
||
/* Import Run Configurations */ | ||
task importRunConfigurations(type: Copy) { | ||
group = 'Idea' | ||
description = "Import run configurations" | ||
from("${rootDir}/run-configs/idea") { | ||
include '*.xml' | ||
} | ||
into "${rootDir}/.idea/runConfigurations" | ||
} | ||
|
||
/* Clear Run Configurations */ | ||
task clearRunConfigurations(type: Delete) { | ||
group = 'Idea' | ||
description = "Delete all run configurations" | ||
delete fileTree("${rootDir}/.idea/runConfigurations") { | ||
include "**/*.xml" | ||
} | ||
followSymlinks = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.