Jump to content

1.7.10 forgegradle keeps failing builds


RubyEmerald

Recommended Posts

i am a 1.12.2 forge mod maker and when i try to build the mod it says build fail or somethin heres my code.

 

 

 

 

 

 

 

 

 

 

Last login: Sat Jul 10 21:13:27 on ttys000

cd desktop

cd codakid

cd ""^[[D/Users/iMac/.nvm/versions/io.js/v3.3.1/lib/node_modules/npm/bin/npm-cli.js:85

      let notifier = require('update-notifier')({pkg})

      ^^^

 

SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode

    at exports.runInThisContext (vm.js:53:16)

    at Module._compile (module.js:413:25)

    at Object.Module._extensions..js (module.js:448:10)

    at Module.load (module.js:355:32)

    at Function.Module._load (module.js:310:12)

    at Function.Module.runMain (module.js:471:10)

    at startup (node.js:117:18)

    at node.js:951:3

nvm is not compatible with the npm config "prefix" option: currently set to ""

Run `npm config delete prefix` or `nvm use --delete-prefix iojs-v3.3.1 --silent` to unset it.

iMacs-iMac:~ iMac$ cd desktop

iMacs-iMac:desktop iMac$ cd codakid

iMacs-iMac:codakid iMac$ cd "COdakid mod creation 1"

iMacs-iMac:COdakid mod creation 1 iMac$ cd "emerald tools and combat"

-bash: cd: emerald tools and combat: No such file or directory

iMacs-iMac:COdakid mod creation 1 iMac$ cd project

-bash: cd: project: No such file or directory

iMacs-iMac:COdakid mod creation 1 iMac$ cd projects

iMacs-iMac:projects iMac$ cd "emerald tools and combat"

iMacs-iMac:emerald tools and combat iMac$ ./gradlew build

To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/2.14/userguide/gradle_daemon.html.

 

FAILURE: Build failed with an exception.

 

* Where:

Build file '/Users/iMac/Desktop/Codakid/Codakid Mod Creation 1/projects/Emerald Tools And combat/build.gradle' line: 25

 

* What went wrong:

A problem occurred evaluating root project 'Emerald Tools And combat'.

> Could not set unknown property 'runDir' for root project 'Emerald Tools And combat' of type org.gradle.api.Project.

 

* Try:

Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

 

BUILD FAILED

 

Total time: 5.268 secs

iMacs-iMac:emerald tools and combat iMac$ ./gradlew build

 

FAILURE: Build failed with an exception.

 

* Where:

Build file '/Users/iMac/Desktop/Codakid/Codakid Mod Creation 1/projects/Emerald Tools And combat/build.gradle' line: 25

 

* What went wrong:

A problem occurred evaluating root project 'Emerald Tools And combat'.

> Could not set unknown property 'runDir' for root project 'Emerald Tools And combat' of type org.gradle.api.Project.

 

* Try:

Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

 

BUILD FAILED

 

Total time: 4.973 secs

iMacs-iMac:emerald tools and combat iMac$ 

Link to comment
Share on other sites

The problem is here:

version = "1.7.10-10.13.0.1187"
    runDir = "run"
    
    // the mappings can be changed at any time, and must be in the following format.
    // snapshot_YYYYMMDD   snapshot are built nightly.
    // stable_#            stables are built at the discretion of the MCP team.
    // Use non-default mappings at your own risk. they may not always work.
    // simply re-run your setup task after changing the mappings to update your workspace.
    mappings = "snapshot_20171003"
    // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.

This should be:

minecraft {
    version = "1.7.10-10.13.0.1187"
    runDir = "run"
    
    // the mappings can be changed at any time, and must be in the following format.
    // snapshot_YYYYMMDD   snapshot are built nightly.
    // stable_#            stables are built at the discretion of the MCP team.
    // Use non-default mappings at your own risk. they may not always work.
    // simply re-run your setup task after changing the mappings to update your workspace.
    mappings = "snapshot_20171003"
    // makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
}

 

  • Like 1
Link to comment
Share on other sites

  • Guest locked this topic
Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • so i just got this crash report and i dont mod a lot so i literally have no idea what to do to fix this
    • Hello, I was trying to play a MOD in my preferred language, but I see that only some items are translated, and I go to debug and I get this information (the only thing that is translated is the bestiary):   [14sep.2024 17:14:36.415] [Render thread/WARN] [net.minecraft.client.resources.language.ClientLanguage/]: Skipped language file: mowziesmobs:lang/es_es.json (com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Expected name at line 394 column 2 path $.config.mowziesmobs.ice_crystal_attack_multiplier) [14sep.2024 17:14:36.421] [Render thread/WARN] [net.minecraft.client.resources.language.ClientLanguage/]: Skipped language file: iceandfire:lang/es_es.json (com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated object at line 1349 column 4 path $.iceandfire.sound.subtitle.dragonflute)   Is that the reason why everything is not translated? , and is there any way to fix it? Thanks
    • I got my model to render from the models renderToBuffer method. But still not quite what I want. I want to render the model from my renderer's render method. I feel that having access to the renderer and its methods will open some doors for me later down the line. //EntityRendererProvider.Context pContext = ; I want this //ToaPlayerRenderer render = new ToaPlayerRenderer(pContext, false); // if I can get the above line to work, having the methods from the renderer class would be incredibly helpful down the line RenderType rendertype = model.renderType(p.getSkinTextureLocation()); // this should be something like render.getTextureLocation() VertexConsumer vertexconsumer = buffer.getBuffer(rendertype); model.renderToBuffer(stack, vertexconsumer, paLights, 1, 1, 1, 1, 1); // I don't want the render to happen here since it doesn't use the renderer //model.render(p, 1f, pTicks, stack, buffer, paLights); I want to render the model using this It is certainly getting closer though. Probably. I am still worried that even if pContext is initialized this new instance of the renderer class will still hit me with the classic and all too familiar "can't use static method in non-static context"
    • Hello, I am learning how to create Multipart Entities and I tried creating a PartEntity based on the EnderDragonPart code. However, when I tested summoning the entity in the game, the PartEntity appeared at position x 0, y 0, z 0 within the game. I tried to make it follow the main entity, and after testing again, the part entity followed the main entity but seemed to teleport back to x 0, y 0, z 0 every tick (I'm just guessing). I don't know how to fix this can someone help me? My github https://github.com/SteveKK666/Forge-NewWorld-1.20.1/tree/master/src/main/java/net/kk/newworldmod/entity/custom Illustration  https://drive.google.com/file/d/157SPvyQCE8GcsRXyQQkD4Dyhalz6LjBn/view?usp=drive_link Sorry for my English; I’m not very good at it. 
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.