Skip to content

Commit

Permalink
fix: removed unneeded publication duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox committed Nov 28, 2023
1 parent e402ad8 commit 60aab6d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 69 deletions.
3 changes: 0 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,7 @@ subprojects {

dependencies {
minecraft "com.mojang:minecraft:${rootProject.minecraft_version}"
// The following line declares the mojmap mappings, you may use other mappings as well
mappings loom.officialMojangMappings()
// The following line declares the yarn mappings you may select this one as well.
// mappings "net.fabricmc:yarn:1.20.1+build.10:v2"
}

publishing {
Expand Down
22 changes: 0 additions & 22 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,4 @@ publishing {
from components.java
}
}

repositories {
if (ftbPublishing.ftbToken) {
maven {
url ftbPublishing.ftbURL
credentials {
username = ftbPublishing.ftbUser
password = ftbPublishing.ftbToken
}
}
}

if (ftbPublishing.sapsToken) {
maven {
url ftbPublishing.sapsURL
credentials {
username = ftbPublishing.sapsUser
password = ftbPublishing.sapsToken
}
}
}
}
}
22 changes: 0 additions & 22 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,26 +74,4 @@ publishing {
from components.java
}
}

repositories {
if (ftbPublishing.ftbToken) {
maven {
url ftbPublishing.ftbURL
credentials {
username = ftbPublishing.ftbUser
password = ftbPublishing.ftbToken
}
}
}

if (ftbPublishing.sapsToken) {
maven {
url ftbPublishing.sapsURL
credentials {
username = ftbPublishing.sapsUser
password = ftbPublishing.sapsToken
}
}
}
}
}
22 changes: 0 additions & 22 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,26 +81,4 @@ publishing {
from components.java
}
}

repositories {
if (ftbPublishing.ftbToken) {
maven {
url ftbPublishing.ftbURL
credentials {
username = ftbPublishing.ftbUser
password = ftbPublishing.ftbToken
}
}
}

if (ftbPublishing.sapsToken) {
maven {
url ftbPublishing.sapsURL
credentials {
username = ftbPublishing.sapsUser
password = ftbPublishing.sapsToken
}
}
}
}
}

0 comments on commit 60aab6d

Please sign in to comment.