Skip to content

Commit

Permalink
Revert to maven plugin instead of maven-publish
Browse files Browse the repository at this point in the history
  • Loading branch information
gaelmarhic committed Dec 21, 2023
1 parent 79d246e commit aaa8cab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id "org.jetbrains.kotlin.jvm" version "1.4.0"
id "com.gradle.plugin-publish" version "0.11.0"
id 'java-gradle-plugin'
id "maven-publish"
id "maven"
}

repositories {
Expand Down Expand Up @@ -35,10 +35,10 @@ compileTestKotlin {
group = "com.gaelmarhic"
version = "1.8"

publishing {
uploadArchives {
repositories {
maven {
url = uri('mavenrepo')
mavenDeployer {
repository(url: uri('mavenrepo'))
}
}
}
Expand Down

0 comments on commit aaa8cab

Please sign in to comment.