fix maven path for api

This commit is contained in:
Flemmli97 2023-05-06 17:04:27 +02:00
parent 0c92980953
commit 50a5262239
2 changed files with 8 additions and 2 deletions

View File

@ -148,7 +148,10 @@ publishing {
classifier "sources"
builtBy remapSourcesJar
}
artifact(remapApiJar)
artifact(remapApiJar) {
classifier "api"
builtBy remapApiJar
}
artifactId project.archives_base_name
version project.version + "-fabric"
}

View File

@ -114,7 +114,10 @@ publishing {
classifier "sources"
builtBy remapSourcesJar
}
artifact(remapApiJar)
artifact(remapApiJar) {
classifier "api"
builtBy remapApiJar
}
artifactId project.archives_base_name
version project.version + "-forge"
}