Skip to content

Commit 9b3ea26

Browse files
committed
Fix generated pom
1 parent 406db93 commit 9b3ea26

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.2.0'
3030
implementation 'androidx.appcompat:appcompat:1.1.0'
3131
//implementation project(':compressor')
32-
implementation 'id.zelory:compressor:3.0.0'
32+
implementation 'id.zelory:compressor:3.0.1'
3333

3434
testImplementation 'junit:junit:4.12'
3535
}

compressor/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'jacoco-android'
55

66
ext {
77
PUBLISH_GROUP_ID = 'id.zelory'
8-
PUBLISH_VERSION = '3.0.0'
8+
PUBLISH_VERSION = '3.0.1'
99
PUBLISH_ARTIFACT_ID = 'compressor'
1010
}
1111

@@ -31,7 +31,6 @@ android {
3131

3232

3333
dependencies {
34-
implementation fileTree(dir: 'libs', include: ['*.jar'])
3534
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
3635
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version"
3736

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@
1515
# When configured, Gradle will run in incubating parallel mode.
1616
# This option should only be used with decoupled projects. More details, visit
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18-
# org.gradle.parallel=true
18+
# org.gradle.parallel=true
19+
android.useAndroidX=true

gradle/publish_maven.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ publishing {
110110
maven {
111111
name = "sonatype"
112112

113-
def releasesRepoUrl = "https://s01.oss.sonatype.org/content/repositories/releases/"
113+
def releasesRepoUrl = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
114114
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
115115
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
116116

0 commit comments

Comments
 (0)