Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. import com.quickbirdstudios.bluesquare.plugin.mockkAndroid
  2.  
  3. // 1
  4. /* Apply the project specific plugin */
  5. plugins {
  6. id("com.quickbirdstudios.bluesquare")
  7. }
  8.  
  9. // 2
  10. /* Configure the project specific plugin */
  11. bluesquare {
  12. packageName = "core"
  13. publish = true
  14. }
  15.  
  16. // 3
  17. /* Define the modules dependencies */
  18. dependencies {
  19. api(project(":core:base"))
  20. api(project(":core:hookable"))
  21. api(project(":core:hijack"))
  22. api(project(":core:controller"))
  23. api(project(":core:variant"))
  24.  
  25. implementation(project(":processor:preview"))
  26. implementation(project(":image_processing"))
  27.  
  28. testImplementation(project(":test_utils"))
  29. androidTestImplementation(project(":test_utils"))
  30. androidTestImplementation(project(":core:test_util"))
  31. androidTestImplementation(project(":processor:test_util"))
  32. androidTestImplementation(project(":core:test_util"))
  33. androidTestImplementation(mockkAndroid)
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement