We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88902ff commit f968bf2Copy full SHA for f968bf2
build.gradle.kts
@@ -25,7 +25,7 @@ plugins {
25
}
26
27
group = "dev.mtctx.unipub"
28
-version = "2.0.1"
+version = "2.0.2"
29
30
repositories {
31
mavenCentral()
src/main/kotlin/dev/mtctx/unipub/UniPub.kt
@@ -48,6 +48,8 @@ class UniPub : Plugin<Project> {
48
49
target.tasks.withType(PublishToMavenRepository::class.java).configureEach {
50
doFirst {
51
+ if (repository.url.scheme == "file") return@doFirst
52
+
53
val settings =
54
loadAndValidateSettingsFile(extension, projectPath(target.project.projectDir.absolutePath))
55
val profile = settings.profiles.find { it.name == extension.profileName }
0 commit comments