Skip to content

Commit

Permalink
Setup jar name & Static refmap name
Browse files Browse the repository at this point in the history
  • Loading branch information
Asek3 committed Sep 8, 2023
1 parent 0869c67 commit 7245a0a
Show file tree
Hide file tree
Showing 11 changed files with 2 additions and 11 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@ loom {
"mixins.oculus.compat.json"
]
}
mixin.defaultRefmapName = "oculus-mixins-refmap.json"
}

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

archivesBaseName = project.archives_base_name
archivesBaseName = "${project.archives_base_name}-mc${project.minecraft_version}"
version = project.mod_version
group = project.maven_group

Expand Down
1 change: 0 additions & 1 deletion src/main/resources/mixins.oculus.bettermipmaps.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"required": true,
"minVersion": "0.8",
"package": "net.coderbot.iris.mixin.bettermipmaps",
"refmap": "oculus-refmap.json",
"compatibilityLevel": "JAVA_8",
"client": [
"MixinMipmapGenerator",
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/mixins.oculus.compat.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"minVersion": "0.8",
"package": "net.coderbot.iris.mixin.compat",
"plugin": "net.coderbot.iris.mixin.compat.CompatMixinPlugin",
"refmap": "oculus-refmap.json",
"compatibilityLevel": "JAVA_8",
"client": [
"epicfight.MixinEpicFightRenderTypes",
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/mixins.oculus.compat.sodium.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"package": "net.coderbot.iris.compat.sodium.mixin",
"plugin": "net.coderbot.iris.compat.sodium.mixin.IrisSodiumCompatMixinPlugin",
"refmap": "oculus-refmap.json",
"required": true,
"minVersion": "0.8",
"compatibilityLevel": "JAVA_8",
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/mixins.oculus.fantastic.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"required": true,
"minVersion": "0.8",
"package": "net.coderbot.iris.mixin.fantastic",
"refmap": "oculus-refmap.json",
"compatibilityLevel": "JAVA_8",
"client": [
"MixinBarrierParticle",
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/mixins.oculus.fixes.maxfpscrash.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"required": true,
"minVersion": "0.8",
"package": "net.coderbot.iris.mixin",
"refmap": "oculus-refmap.json",
"compatibilityLevel": "JAVA_8",
"client": [
"MixinMaxFpsCrashFix"
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/mixins.oculus.integrationtest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"required": true,
"minVersion": "0.8",
"package": "net.coderbot.iris.mixin.integrationtest",
"refmap": "oculus-refmap.json",
"compatibilityLevel": "JAVA_8",
"client": [
"MixinRenderTarget_StencilBufferTest"
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/mixins.oculus.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"required": true,
"minVersion": "0.8",
"package": "net.coderbot.iris.mixin",
"refmap": "oculus-refmap.json",
"compatibilityLevel": "JAVA_8",
"client": [
"DimensionTypeAccessor",
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/mixins.oculus.optimized-stitching.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"required": true,
"minVersion": "0.8",
"package": "net.coderbot.iris.mixin.optimized_stitching",
"refmap": "oculus-refmap.json",
"compatibilityLevel": "JAVA_8",
"client": [
"MixinStitcher"
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/mixins.oculus.vertexformat.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"required": true,
"minVersion": "0.8",
"package": "net.coderbot.iris.mixin.vertices",
"refmap": "oculus-refmap.json",
"compatibilityLevel": "JAVA_8",
"client": [
"MixinBufferBuilder",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"required": true,
"minVersion": "0.8",
"package": "net.coderbot.batchedentityrendering.mixin",
"refmap": "oculus-refmap.json",
"compatibilityLevel": "JAVA_8",
"client": [
"ChunkBufferBuilderPackAccessor",
Expand Down

0 comments on commit 7245a0a

Please sign in to comment.