Skip to content

Commit

Permalink
Bump gradle-maven-publish-plugin version to fix publication (#41)
Browse files Browse the repository at this point in the history
Was seeing the following failure when attempting to publish:

```
Execution failed for task ':functional:publishKotlinMultiplatformPublicationToLocalRepository'.
> Failed to publish publication 'kotlinMultiplatform' to repository 'local'
   > Invalid publication 'kotlinMultiplatform': multiple artifacts with the identical extension and classifier ('jar', 'sources').
```

As stated in [issue 185], bumping gradle-maven-publish-plugin to 0.14.0
resolves the issue.

[issue 185]: vanniktech/gradle-maven-publish-plugin#185 (comment)
  • Loading branch information
twyatt authored Mar 10, 2021
1 parent cac10d0 commit 247073a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
id("org.jmailen.kotlinter") version "3.2.0" apply false
id("binary-compatibility-validator") version "0.2.3"
id("org.jetbrains.dokka") version "1.4.10.2" apply false
id("com.vanniktech.maven.publish") version "0.13.0" apply false
id("com.vanniktech.maven.publish") version "0.14.0" apply false
id("net.mbonnin.one.eight") version "0.1"
}

Expand Down

0 comments on commit 247073a

Please sign in to comment.