Skip to content

Instantly share code, notes, and snippets.

@quickbirdstudios-eng
Created September 6, 2019 11:43
Show Gist options
  • Save quickbirdstudios-eng/8c87913b3d894a5ec41c5e8ceb3ab3b2 to your computer and use it in GitHub Desktop.
Save quickbirdstudios-eng/8c87913b3d894a5ec41c5e8ceb3ab3b2 to your computer and use it in GitHub Desktop.
import com.quickbirdstudios.bluesquare.plugin.mockkAndroid
// 1
/* Apply the project specific plugin */
plugins {
id("com.quickbirdstudios.bluesquare")
}
// 2
/* Configure the project specific plugin */
bluesquare {
packageName = "core"
publish = true
}
// 3
/* Define the modules dependencies */
dependencies {
api(project(":core:base"))
api(project(":core:hookable"))
api(project(":core:hijack"))
api(project(":core:controller"))
api(project(":core:variant"))
implementation(project(":processor:preview"))
implementation(project(":image_processing"))
testImplementation(project(":test_utils"))
androidTestImplementation(project(":test_utils"))
androidTestImplementation(project(":core:test_util"))
androidTestImplementation(project(":processor:test_util"))
androidTestImplementation(project(":core:test_util"))
androidTestImplementation(mockkAndroid)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment