Skip to content

Commit

Permalink
Merge pull request #39 from zeoflow/settings-hierarchy
Browse files Browse the repository at this point in the history
Fixes hierarchy of project modules
  • Loading branch information
teogor authored Apr 12, 2021
2 parents 2b86bba + 7862fc0 commit a65a475
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,15 @@ def includeProject(name, filePath, List<BuildType> filter = []) {
}

// Demo Project
includeProject(":demo", "demo")
//includeProject(":demo", "demo")
include ':demo'

// Memo Components
includeProject(":memo", "memo")
includeProject(":memo-annotation", "memo-annotation")
includeProject(":memo-compiler", "memo-compiler")
//includeProject(":memo", "memo")
//includeProject(":memo-annotation", "memo-annotation")
//includeProject(":memo-compiler", "memo-compiler")
include ':memo'
include ':memo-annotation'
include ':memo-compiler'

rootProject.name = "Memo"

0 comments on commit a65a475

Please sign in to comment.