Skip to content

Commit

Permalink
add maven release dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
junhanRyu committed Jun 6, 2021
1 parent 69fb447 commit 144f491
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
5 changes: 4 additions & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'com.github.dcendents.android-maven'
}

group = 'com.github.junhanryu'

android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
Expand All @@ -11,7 +14,7 @@ android {
minSdkVersion 23
targetSdkVersion 30
versionCode 1
versionName "1.0.0"
versionName "1.0.0-alpha"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down

0 comments on commit 144f491

Please sign in to comment.