Created
September 6, 2019 11:43
-
-
Save quickbirdstudios-eng/8c87913b3d894a5ec41c5e8ceb3ab3b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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