Skip to content

Commit

Permalink
Update dependencies to use non-snapshot 3.0.0 versions (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlind committed Apr 1, 2024
1 parent 1a8430f commit af11a27
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 28 deletions.
11 changes: 3 additions & 8 deletions code/app-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,17 +75,12 @@ dependencies {
implementation(project(":edge"))
implementation(project(":app-util-xdm"))

implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion-SNAPSHOT")
implementation("com.adobe.marketing.mobile:edgeidentity:$mavenEdgeIdentityVersion-SNAPSHOT") {
exclude(group = "com.adobe.marketing.mobile", module = "core")
}
implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion")
implementation("com.adobe.marketing.mobile:edgeidentity:$mavenEdgeIdentityVersion")
implementation("com.adobe.marketing.mobile:edgeconsent:3.0.0-SNAPSHOT") {
exclude(group = "com.adobe.marketing.mobile", module = "edge")
exclude(group = "com.adobe.marketing.mobile", module = "core")
}
implementation("com.adobe.marketing.mobile:assurance:3.0.0-SNAPSHOT") {
exclude(group = "com.adobe.marketing.mobile", module = "core")
}
implementation("com.adobe.marketing.mobile:assurance:3.0.0")

implementation("androidx.constraintlayout:constraintlayout:2.0.4")

Expand Down
2 changes: 1 addition & 1 deletion code/app-util-xdm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ android {

dependencies {
implementation(project(":edge"))
implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion-SNAPSHOT")
implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion")
}
11 changes: 3 additions & 8 deletions code/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,12 @@ dependencies {
implementation(project(":edge"))
implementation(project(":app-util-xdm"))

implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion-SNAPSHOT")
implementation("com.adobe.marketing.mobile:edgeidentity:$mavenEdgeIdentityVersion-SNAPSHOT") {
exclude(group = "com.adobe.marketing.mobile", module = "core")
}
implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion")
implementation("com.adobe.marketing.mobile:edgeidentity:$mavenEdgeIdentityVersion")
implementation("com.adobe.marketing.mobile:edgeconsent:3.0.0-SNAPSHOT") {
exclude(group = "com.adobe.marketing.mobile", module = "edge")
exclude(group = "com.adobe.marketing.mobile", module = "core")
}
implementation("com.adobe.marketing.mobile:assurance:3.0.0-SNAPSHOT") {
exclude(group = "com.adobe.marketing.mobile", module = "core")
}
implementation("com.adobe.marketing.mobile:assurance:3.0.0")

implementation("androidx.constraintlayout:constraintlayout:2.0.4")

Expand Down
8 changes: 2 additions & 6 deletions code/edge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,15 @@ aepLibrary {
}

dependencies {
// Stop using SNAPSHOT after Core release.
implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion-SNAPSHOT")
implementation("com.adobe.marketing.mobile:edgeidentity:$mavenEdgeIdentityVersion-SNAPSHOT") {
exclude(group = "com.adobe.marketing.mobile", module = "core")
}
implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion")
implementation("com.adobe.marketing.mobile:edgeidentity:$mavenEdgeIdentityVersion")

testImplementation(project(":test-utils"))
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.12.7")

androidTestImplementation(project(":test-utils"))
androidTestImplementation("com.adobe.marketing.mobile:edgeconsent:3.0.0-SNAPSHOT")
{
exclude(group = "com.adobe.marketing.mobile", module = "core")
exclude(group = "com.adobe.marketing.mobile", module = "edge")
}
}
2 changes: 1 addition & 1 deletion code/test-utils/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ android {

dependencies {
implementation(project(":edge"))
implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion-SNAPSHOT")
implementation("com.adobe.marketing.mobile:core:$mavenCoreVersion")

implementation("androidx.test.ext:junit:${BuildConstants.Versions.ANDROIDX_TEST_EXT_JUNIT}")
implementation("com.fasterxml.jackson.core:jackson-databind:2.12.7")
Expand Down
9 changes: 5 additions & 4 deletions code/upstream-integration-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ plugins {
id("com.diffplug.spotless")
}

val mavenCoreVersion: String by project
val mavenEdgeIdentityVersion: String by project

configure<com.diffplug.gradle.spotless.SpotlessExtension> {
kotlin {
target("src/*/java/**/*.kt")
Expand Down Expand Up @@ -86,10 +89,8 @@ dependencies {

implementation("androidx.core:core-ktx:1.9.0")

androidTestImplementation("com.adobe.marketing.mobile:core:3.0.0-SNAPSHOT")
androidTestImplementation("com.adobe.marketing.mobile:edgeidentity:3.0.0-SNAPSHOT"){
exclude(group = "com.adobe.marketing.mobile", module = "core")
}
androidTestImplementation("com.adobe.marketing.mobile:core:$mavenCoreVersion")
androidTestImplementation("com.adobe.marketing.mobile:edgeidentity:$mavenEdgeIdentityVersion")
androidTestImplementation("androidx.test.ext:junit:1.1.3")
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
androidTestImplementation("androidx.test:runner:1.4.0")
Expand Down

0 comments on commit af11a27

Please sign in to comment.