Skip to content

Commit

Permalink
remove javadocjar from publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Treetrain1 committed Apr 12, 2023
1 parent 3a371da commit 8d32275
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -540,12 +540,12 @@ curseforge {
displayName = display_name
})
addArtifact(tasks.remapSourcesJar.get())
addArtifact(javadocJar)
//addArtifact(javadocJar)

afterEvaluate {
uploadTask.dependsOn(remapJar)
uploadTask.dependsOn(tasks.remapSourcesJar.get())
uploadTask.dependsOn(javadocJar)
//uploadTask.dependsOn(javadocJar)
}
})
curseGradleOptions.forgeGradleIntegration = false
Expand All @@ -561,7 +561,12 @@ modrinth {
uploadFile.set(remapJar)
gameVersions.set(listOf(minecraft_version))
loaders.set(listOf("fabric", "quilt"))
additionalFiles.set(listOf(tasks.remapSourcesJar.get(), javadocJar))
additionalFiles.set(
listOf(
tasks.remapSourcesJar.get(),
//javadocJar
)
)
dependencies {
required.project("fabric-api")
optional.project("cloth-config")
Expand Down

7 comments on commit 8d32275

@AViewFromTheTop

This comment was marked as abuse.

@AViewFromTheTop

This comment was marked as abuse.

@AViewFromTheTop

This comment was marked as abuse.

@MerpisMe
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

calm down, i'm sure it wasn't done with the intention of making it more difficult

@AViewFromTheTop

This comment was marked as abuse.

@MerpisMe
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CALM DOWN
it was probably done by someone who didn't realize that it's an item that we use

@AViewFromTheTop

This comment was marked as abuse.

Please sign in to comment.