build.gradle 484 B

12345678910111213141516171819202122
  1. plugins {
  2. id 'java-library'
  3. id 'org.jetbrains.kotlin.jvm'
  4. id 'maven-publish'
  5. }
  6. ext {
  7. GROUP_ID = 'com.wenext.android'
  8. ARTIFACT_ID = 'frame-zero'
  9. VERSION = '6.0.0'
  10. }
  11. apply from: "../../java-publish.gradle"
  12. dependencies {
  13. //kotlin
  14. compileOnly libs.kotlin.stdlib
  15. // testImplementation 'junit:junit:4.13.2'
  16. // androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  17. // androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  18. }