Skip to content

Commit

Permalink
Merge pull request #40 from adobe/dev
Browse files Browse the repository at this point in the history
Merge dev -> main for AEP Gradle Plugin
  • Loading branch information
praveek authored Mar 6, 2024
2 parents 2c91172 + 0af3e00 commit db0a7b5
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,12 @@ class AEPLibraryPlugin : Plugin<Project> {
// Apply necessary plugins for this project.
project.plugins.apply(BuildConstants.Plugins.ANDROID_LIBRARY)
project.plugins.apply(BuildConstants.Plugins.KOTLIN_ANDROID)
project.plugins.apply(JacocoPlugin::class.java)
project.plugins.apply(PublishPlugin::class.java)

// Don't configure these plugins for validation tasks.
if (!shouldConfigureForAPIValidationTask(project)) {
project.plugins.apply(JacocoPlugin::class.java)
project.plugins.apply(PublishPlugin::class.java)
}

// The Android library is set up when you apply this plugin.
// If necessary, you can customize it in your project's build.gradle file.
Expand Down

0 comments on commit db0a7b5

Please sign in to comment.