Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
fixed publishing issues, bumped pre
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed May 19, 2024
1 parent 610252c commit 061f305
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
12 changes: 11 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,17 @@ subprojects {
publications {
mavenJava(org.gradle.api.publish.maven.MavenPublication) {
artifactId = "gtcore-" + project.name
from components.java
//from components.java
artifact sourcesJar
artifact(jar){
classifier = "dev"
}
afterEvaluate {
artifact(remapJar){
classifier = null
}
}

}
}
repositories {
Expand Down
4 changes: 4 additions & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@ dependencies {
modImplementation("curse.maven:the-one-probe-fabric-581847:${project.top_fabric_file}")
modImplementation "maven.modrinth:carbon-config:${project.carbon_config_fabric_version}"
}

remapJar {
prodNamespace("intermediary")
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ top_file=3157997

maven_group=io.github.gregtechintergalactical
archive_base_name=gtcore
mod_version=0.1.1-pre28
mod_version=0.1.1-pre29

0 comments on commit 061f305

Please sign in to comment.