Skip to content

Commit

Permalink
Moved module configurator to plugins.
Browse files Browse the repository at this point in the history
  • Loading branch information
nassdk committed Jan 31, 2022
1 parent 196d467 commit 668e54a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import buildSrc.configurators.dependencies.Plugins

buildscript {

repositories {
Expand All @@ -12,8 +14,8 @@ buildscript {
}
}

apply(plugin = "com.nassdk.flightaero.module-configurator")
apply(plugin = Plugins.moduleConfigurator)

subprojects {
apply(plugin = "com.nassdk.flightaero.module-configurator")
apply(plugin = Plugins.moduleConfigurator)
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ object Plugins {
const val parcelize = "kotlin-parcelize"
const val ktAndroid = "kotlin-android"
const val serialization = "kotlinx-serialization"
const val moduleConfigurator = "com.nassdk.flightaero.module-configurator"
}

0 comments on commit 668e54a

Please sign in to comment.