Skip to content

Commit

Permalink
fix: duplicate build.gradle maven publication config
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Dec 29, 2022
1 parent 27cbdd9 commit cbec7b3
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -199,40 +199,6 @@ publishing {
}
}

publishing {
publications {
mavenJava(MavenPublication) {
artifact jar
artifact sourcesJar

pom {
name = 'Modonomicon'
description = 'An open-source magic mod built around classical alchemy to replicate and transmute matter, and create magical artifacts.'
url = 'https://github.com/klikli-dev/theurgy'
licenses {
license {
name = 'MIT License'
url = 'https://raw.githubusercontent.com/klikli-dev/theurgy/version/1.19/LICENSES/MIT.txt'
}
}
scm {
connection = 'scm:git:ssh:[email protected]:klikli-dev/theurgy.git'
url = 'https://github.com/klikli-dev/theurgy'
}
}
}
}
repositories {
maven {
url "https://repo.repsy.io/mvn/klikli-dev/mods"
credentials {
username = System.getenv('MAVEN_USER')
password = System.getenv('MAVEN_PASS')
}
}
}
}

tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}
Expand Down

0 comments on commit cbec7b3

Please sign in to comment.