Skip to content

Commit

Permalink
Holy Separator
Browse files Browse the repository at this point in the history
  • Loading branch information
Nxer committed Nov 6, 2023
1 parent e02d369 commit ce185d3
Show file tree
Hide file tree
Showing 13 changed files with 559 additions and 34 deletions.
44 changes: 23 additions & 21 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//version: 1698936026
//version: 1699231026
/*
DO NOT CHANGE THIS FILE!
Also, you may replace this file at any time if there is an update available.
Expand Down Expand Up @@ -1172,30 +1172,32 @@ tasks.named("ideVirtualMainClasses").configure {
// workaround variable hiding in pom processing
def projectConfigs = project.configurations

publishing {
publications {
create("maven", MavenPublication) {
from components.java
if (System.getenv("MAVEN_USER") != null) {
publishing {
publications {
create("maven", MavenPublication) {
from components.java

if (apiPackage) {
artifact apiJar
}
if (apiPackage) {
artifact apiJar
}

groupId = System.getenv("ARTIFACT_GROUP_ID") ?: project.group
artifactId = System.getenv("ARTIFACT_ID") ?: project.name
// Using the identified version, not project.version as it has the prepended 1.7.10
version = System.getenv("RELEASE_VERSION") ?: identifiedVersion
groupId = System.getenv("ARTIFACT_GROUP_ID") ?: project.group
artifactId = System.getenv("ARTIFACT_ID") ?: project.name
// Using the identified version, not project.version as it has the prepended 1.7.10
version = System.getenv("RELEASE_VERSION") ?: identifiedVersion
}
}
}

repositories {
if (usesMavenPublishing.toBoolean()) {
maven {
url = mavenPublishUrl
allowInsecureProtocol = mavenPublishUrl.startsWith("http://") // Mostly for the GTNH maven
credentials {
username = System.getenv("MAVEN_USER") ?: "NONE"
password = System.getenv("MAVEN_PASSWORD") ?: "NONE"
repositories {
if (usesMavenPublishing.toBoolean()) {
maven {
url = mavenPublishUrl
allowInsecureProtocol = mavenPublishUrl.startsWith("http://") // Mostly for the GTNH maven
credentials {
username = System.getenv("MAVEN_USER") ?: "NONE"
password = System.getenv("MAVEN_PASSWORD") ?: "NONE"
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public enum GTCMItemList implements IItemContainer {
MagneticMixer,
MagneticDomainConstructor,
Silksong,
HolySeparator,

// single block Machines
InfiniteAirHatch,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package com.GTNH_Community.gtnhcommunitymod.common.block.blockClass.Casings;

public class GTCMCasing {
}
Loading

0 comments on commit ce185d3

Please sign in to comment.