Skip to content

Commit

Permalink
Recipe fixes, replaced spaces with tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
paulevsGitch committed Dec 15, 2021
1 parent 5ca6a92 commit d8de624
Show file tree
Hide file tree
Showing 60 changed files with 1,910 additions and 1,945 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ BCLib is a library mod for BetterX team mods, developed for Fabric, MC 1.18
## Features:
### Rendering
* Emissive textures (with _e suffix)
* Can be applied to Solid and Transparent blocks;
* Can be changed/added with resourcepacks;
* Incompatible with Sodium and Canvas (just will be not rendered);
* Incompatible with Iris shaders (Iris without shaders works fine).
* Can be applied to Solid and Transparent blocks;
* Can be changed/added with resourcepacks;
* Incompatible with Sodium and Canvas (just will be not rendered);
* Incompatible with Iris shaders (Iris without shaders works fine).
* Procedural block and item models (from paterns or from code);
* Block render interfaces.

Expand Down
30 changes: 15 additions & 15 deletions bclib.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ buildscript {
classpath 'org.kohsuke:github-api:1.114'
}

repositories {
gradlePluginPortal()
}
repositories {
gradlePluginPortal()
}
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
Expand All @@ -15,16 +15,16 @@ version = project.mod_version
group = project.maven_group

repositories {
maven { url "https://maven.dblsaiko.net/" }
maven { url "https://server.bbkr.space:8081/artifactory/libs-release/" }
maven { url "https://maven.dblsaiko.net/" }
maven { url "https://server.bbkr.space:8081/artifactory/libs-release/" }
maven { url "https://maven.fabricmc.net/" }
maven { url "https://maven.shedaniel.me/" }
maven { url 'https://maven.blamejared.com' }
maven { url 'https://maven.blamejared.com' }
maven { url 'https://jitpack.io' }
}

loom {
accessWidenerPath = file("src/main/resources/bclib.accesswidener")
accessWidenerPath = file("src/main/resources/bclib.accesswidener")
}

dependencies {
Expand All @@ -40,7 +40,7 @@ processResources {
println "Version: ${project.mod_version}"
inputs.property "version", project.mod_version

filesMatching("fabric.mod.json") {
filesMatching("fabric.mod.json") {
expand "version": project.mod_version
}
}
Expand All @@ -50,12 +50,12 @@ processResources {
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
it.options.release = 17
it.options.release = 17
}

javadoc {
options.tags = [ "reason" ]
options.stylesheetFile = new File(projectDir, "javadoc.css");
options.stylesheetFile = new File(projectDir, "javadoc.css");
}

task javadocJar(type: Jar, dependsOn: javadoc) {
Expand Down Expand Up @@ -134,12 +134,12 @@ publishing {
}

configurations {
dev {
canBeResolved = false
canBeConsumed = true
}
dev {
canBeResolved = false
canBeConsumed = true
}
}

artifacts {
dev jar
dev jar
}
Loading

0 comments on commit d8de624

Please sign in to comment.