Skip to content

Commit

Permalink
version updated
Browse files Browse the repository at this point in the history
  • Loading branch information
teogor committed Apr 13, 2021
1 parent 3b9f8e7 commit d884753
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ systemProp.org.gradle.internal.http.socketTimeout=120000
# Maven
POM_NAME=Memo
POM_PACKAGING=aar
VERSION_NAME=1.1.4
VERSION_NAME=1.1.5
GROUP=com.zeoflow
POM_DESCRIPTION=Android processing and secured library for managing SharedPreferences as key-value elements efficiently and structurally.
POM_URL=https://github.com/zeoflow/memo
Expand Down
5 changes: 5 additions & 0 deletions memo-compiler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ dependencies {
implementation project(path: ':memo')
implementation project(path: ':memo-annotation')

// Dependencies from maven
// def memo_version = "1.1.5"
// implementation("com.zeoflow:memo:$memo_version")
// implementation("com.zeoflow:memo-annotation:$memo_version")

implementation("com.zeoflow:jx:1.2.0")

implementation("com.google.auto.service:auto-service-annotations:1.0-rc7")
Expand Down
12 changes: 4 additions & 8 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,11 @@ def includeProject(name, filePath, List<BuildType> filter = []) {
}

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

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

rootProject.name = "Memo"

0 comments on commit d884753

Please sign in to comment.