| 12345678910111213141516171819202122 |
- plugins {
- id 'java-library'
- id 'org.jetbrains.kotlin.jvm'
- id 'maven-publish'
- }
- ext {
- GROUP_ID = 'com.wenext.android'
- ARTIFACT_ID = 'frame-zero'
- VERSION = '6.0.0'
- }
- apply from: "../../java-publish.gradle"
- dependencies {
- //kotlin
- compileOnly libs.kotlin.stdlib
- // testImplementation 'junit:junit:4.13.2'
- // androidTestImplementation 'androidx.test.ext:junit:1.1.3'
- // androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
- }
|