Skip to content

Commit

Permalink
Merge pull request #369 from wttech/feature/install-cloud-mode
Browse files Browse the repository at this point in the history
small fix
  • Loading branch information
dprzybyl authored Jun 28, 2022
2 parents 29c2007 + a419dc0 commit 871c6ed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions app/aem/all.cloud/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ apply(from = rootProject.file("app/aem/common.gradle.kts"))
aem {
tasks {
packageCompose {
archiveBaseName.set("all")
archiveClassifier.set("cloud")
nestPackageProject(":app:aem:ui.apps.cloud") {
dirPath.set("/apps/apm-packages/application/install")
}
Expand All @@ -27,12 +25,15 @@ publishing {
publications {
register<MavenPublication>("apmCrx") {
groupId = project.group.toString() + ".crx"
artifactId = "apm-all"
artifact(tasks["packageCompose"])
afterEvaluate {
artifactId = "apm-" + project.name
version = rootProject.version
}
pom {
name.set("APM - " + project.name)
description.set(project.description)
}
}
}
}
7 changes: 4 additions & 3 deletions app/aem/ui.apps.cloud/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ apply(from = rootProject.file("app/aem/common.gradle.kts"))
aem {
tasks {
packageCompose {
archiveBaseName.set("ui.apps")
archiveClassifier.set("cloud")
mergePackageProject(":app:aem:ui.apps.base")
installBundleProject(":app:aem:api")
installBundleProject(":app:aem:runmodes.cloud")
Expand All @@ -43,12 +41,15 @@ publishing {
publications {
register<MavenPublication>("apmCrx") {
groupId = project.group.toString() + ".crx"
artifactId = "apm-ui.apps"
artifact(tasks["packageCompose"])
afterEvaluate {
artifactId = "apm-" + project.name
version = rootProject.version
}
pom {
name.set("APM - " + project.name)
description.set(project.description)
}
}
}
}

0 comments on commit 871c6ed

Please sign in to comment.