Skip to content

Commit

Permalink
Make 1.0.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdevey committed Aug 5, 2021
1 parent f1b4053 commit 3310a6f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
.DS_Store
/build
/captures
java_pid13752.hprof
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ allprojects {
<br>
<pre>
dependencies {
implementation 'uk.bandev:xplosion:1.0.6'
implementation 'uk.bandev:xplosion:1.0.7'
}</pre>
</li>
<li>
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android.useAndroidX=true

GROUP=uk.bandev
POM_ARTIFACT_ID=xplosion
VERSION_NAME=1.0.6
VERSION_NAME=1.0.7

POM_NAME=Xplosion
POM_PACKAGING=aar
Expand Down
3 changes: 1 addition & 2 deletions xplosion-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 30
versionCode 10
versionName "1.0.6"
versionName VERSION_NAME
}

buildTypes {
Expand Down
10 changes: 3 additions & 7 deletions xplosion-library/publish.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
apply plugin: 'maven-publish'

def LIB_GROUP_ID = 'uk.bandev'
def LIB_ARTIFACT_ID = 'xplosion'
def LIB_VERSION = '1.0.6'

task sourceJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
classifier "sources"
Expand All @@ -26,9 +22,9 @@ publishing {
}
publications {
codeview(MavenPublication) {
groupId LIB_GROUP_ID
artifactId LIB_ARTIFACT_ID
version LIB_VERSION
groupId GROUP
artifactId POM_ARTIFACT_ID
version VERSION_NAME
artifact("$buildDir/outputs/aar/xplosion-library-debug.aar")
artifact(sourceJar)

Expand Down

0 comments on commit 3310a6f

Please sign in to comment.