Skip to content

Commit

Permalink
Fix bugs for 1.0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdevey committed May 8, 2021
1 parent e89fc68 commit f5bc422
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allprojects {
**Step 2.** Add the dependency to your app's project gradle file:
```groovy
dependencies {
implementation 'uk.bandev:xplosion:1.0.5'
implementation 'uk.bandev:xplosion:1.0.6'
}
```

Expand Down
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ buildscript {

repositories {
google()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
}

Expand All @@ -22,9 +21,14 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
}

plugins.withId("com.vanniktech.maven.publish") {
mavenPublish {
sonatypeHost = "S01"
}
}
}

task clean(type: Delete) {
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.5
VERSION_NAME=1.0.6

POM_NAME=Xplosion
POM_PACKAGING=aar
Expand Down
9 changes: 2 additions & 7 deletions xplosion-library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

ext {
RELEASE_REPOSITORY_URL = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
SNAPSHOT_REPOSITORY_URL = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
}

apply plugin: 'com.vanniktech.maven.publish'
apply from: file('publish.gradle')

Expand All @@ -16,8 +11,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 30
versionCode 9
versionName "1.0.5"
versionCode 10
versionName "1.0.6"
}

buildTypes {
Expand Down
2 changes: 1 addition & 1 deletion xplosion-library/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'maven-publish'

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

task sourceJar(type: Jar) {
from android.sourceSets.main.java.srcDirs
Expand Down

0 comments on commit f5bc422

Please sign in to comment.