Skip to content

Commit

Permalink
Release version 1.0.0-alpha10
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali Nasrabadi committed Apr 13, 2023
1 parent 4b26a0f commit fb563a0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ kotlin.code.style=official
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

systemProp.progress-version=1.0.0-alpha08
systemProp.progress-version=1.0.0-alpha10
19 changes: 17 additions & 2 deletions progress-modifier/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ plugins {
id 'maven-publish'
}

def progressVersion = new File(System.getProperty('progress-version'))

group = 'com.github.nasrabadiam'
version = "1.0.0-alpha09"
version = progressVersion

android {
namespace 'com.nasrabadiam.progress_modifier'
Expand All @@ -15,7 +17,7 @@ android {
minSdk 21
targetSdk 33
versionCode 1
versionName "1.0.0-alpha09"
versionName "1.0.0-alpha10"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -47,4 +49,17 @@ dependencies {
def composeVersion = "1.3.3"
implementation "androidx.compose.ui:ui:$composeVersion"
implementation "androidx.compose.animation:animation-core:$composeVersion"
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.nasrabadiam'
artifactId = 'progress_modifier'
version = progressVersion
}
}
}
}

0 comments on commit fb563a0

Please sign in to comment.