From 8903d9fa783455558d20eb32a2038c87ab5913be Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Sun, 11 Aug 2024 13:22:24 +0200 Subject: Add multi version preprocessor (#2283) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- sharedVariables/src/NoOp.kt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sharedVariables/src/NoOp.kt (limited to 'sharedVariables/src/NoOp.kt') diff --git a/sharedVariables/src/NoOp.kt b/sharedVariables/src/NoOp.kt new file mode 100644 index 000000000..d0103a956 --- /dev/null +++ b/sharedVariables/src/NoOp.kt @@ -0,0 +1,11 @@ +package at.skyhanni.sharedvariables + +import org.gradle.api.Plugin +/** + * This class is a no op plugin. It can be applied to any project or gradle workspace and serves only as a marker + * for gradle to pull in the other classes in the sharedVariables project. We use a subproject rather than buildSrc + * since buildSrc is not available during settings configuration time (and also buildSrc tends to be slower). + */ +class NoOp : Plugin { + override fun apply(target: Any) {} +} -- cgit