Skip to content

Commit

Permalink
Fix publish failure (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
joekuhn authored Apr 8, 2024
1 parent efef140 commit c6d9d3b
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions lottie-compose/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
import com.vanniktech.maven.publish.SonatypeHost
import static de.fayard.refreshVersions.core.Versions.versionFor

buildscript{
ext {
val_build_plugin_version = "3.2.1"
}
repositories {
maven {
url "https://reposilite.svc.ifit.com/reposilite"
credentials {
username valinor_maven_username
password valinor_maven_password
}
}
}
dependencies {
classpath "com.ifit:valinor-build-plugin:$val_build_plugin_version"
}
}

plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
Expand Down Expand Up @@ -44,15 +62,6 @@ publishing {
artifact("$buildDir/outputs/aar/lottie-compose-release.aar")
}
}
repositories {
maven {
url "https://reposilite.svc.ifit.com/reposilite"
credentials {
username valinor_maven_username
password valinor_maven_password
}
}
}
}

baselineProfile {
Expand Down

0 comments on commit c6d9d3b

Please sign in to comment.