Jump to content

HELP! Compiler got problems with GL11 [Same Problem again - no idea whats wrong]


Bedrock_Miner

Recommended Posts

I use GL11 in my mod several times in some renderers..

I can run my mod in Eclipse.

If I try to compile it with Gradle, I get the following errors:

 

****************************
Powered By MCP:
http://mcp.ocean-labs.de/
Searge, ProfMobius, Fesh0r,
R4wk, ZeuX, IngisKahn
MCP Data version : unknown
****************************
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\natives
:compileApiJava UP-TO-DATE
:processApiResources UP-TO-DATE
:apiClasses UP-TO-DATE
:sourceMainJava UP-TO-DATE
:compileJava
warning: [options] bootstrap class path not set in conjunction with -source 1.6
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderBlockMine.java:9: error: package org.lwjgl.
opengl does not exist
import org.lwjgl.opengl.GL11;
                       ^
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderBlockSpikes.java:3: error: package org.lwjg
l.opengl does not exist
import org.lwjgl.opengl.GL11;
                       ^
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityGrenade.java:8: error: package org.lw
jgl.opengl does not exist
import org.lwjgl.opengl.GL11;
                       ^
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityShuriken.java:3: error: package org.l
wjgl.opengl does not exist
import org.lwjgl.opengl.GL11;
                       ^
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\entities\EntityShuriken.java:5: error: package io.netty.
buffer does not exist
import io.netty.buffer.ByteBuf;
                      ^
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\entities\EntityShuriken.java:59: error: cannot find symb
ol
        public void writeSpawnData(ByteBuf data) {
                                   ^
  symbol:   class ByteBuf
  location: class EntityShuriken
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\entities\EntityShuriken.java:64: error: cannot find symb
ol
        public void readSpawnData(ByteBuf data) {
                                  ^
  symbol:   class ByteBuf
  location: class EntityShuriken
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderBlockMine.java:23: error: cannot find symbo
l
                GL11.glTranslatef(0.0F,  -0.1F, 0.0F);
                ^
  symbol:   variable GL11
  location: class RenderBlockMine
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderBlockMine.java:30: error: cannot find symbo
l
                GL11.glTranslatef(0.0F, 0.1F, 0.0F);
                ^
  symbol:   variable GL11
  location: class RenderBlockMine
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderBlockSpikes.java:23: error: cannot find sym
bol
                GL11.glTranslatef(0.0F,  -0.1F, 0.0F);
                ^
  symbol:   variable GL11
  location: class RenderBlockSpikes
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderBlockSpikes.java:30: error: cannot find sym
bol
                GL11.glTranslatef(0.0F, 0.1F, 0.0F);
                ^
  symbol:   variable GL11
  location: class RenderBlockSpikes
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityGrenade.java:28: error: cannot find s
ymbol
                GL11.glPushMatrix();
                ^
  symbol:   variable GL11
  location: class RenderEntityGrenade
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityGrenade.java:29: error: cannot find s
ymbol
                GL11.glTranslatef((float) x, (float) y, (float) z);
                ^
  symbol:   variable GL11
  location: class RenderEntityGrenade
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityGrenade.java:33: error: cannot find s
ymbol
                GL11.glScalef(scale, scale, scale);
                ^
  symbol:   variable GL11
  location: class RenderEntityGrenade
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityGrenade.java:85: error: cannot find s
ymbol
                GL11.glScalef(1.0F/scale, 1.0F/scale, 1.0F/scale);
                ^
  symbol:   variable GL11
  location: class RenderEntityGrenade
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityGrenade.java:86: error: cannot find s
ymbol
                GL11.glTranslatef((float) -x, (float) -y, (float) -z);
                ^
  symbol:   variable GL11
  location: class RenderEntityGrenade
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityGrenade.java:87: error: cannot find s
ymbol
                GL11.glPopMatrix();
                ^
  symbol:   variable GL11
  location: class RenderEntityGrenade
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityShuriken.java:28: error: cannot find
symbol
                GL11.glPushMatrix();
                ^
  symbol:   variable GL11
  location: class RenderEntityShuriken
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityShuriken.java:29: error: cannot find
symbol
                GL11.glTranslatef((float) x, (float) y, (float) z);
                ^
  symbol:   variable GL11
  location: class RenderEntityShuriken
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityShuriken.java:42: error: cannot find
symbol
                GL11.glScalef(scale, scale, scale);
                ^
  symbol:   variable GL11
  location: class RenderEntityShuriken
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityShuriken.java:95: error: cannot find
symbol
                GL11.glScalef(1.0F/scale, 1.0F/scale, 1.0F/scale);
                ^
  symbol:   variable GL11
  location: class RenderEntityShuriken
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityShuriken.java:96: error: cannot find
symbol
                GL11.glTranslatef((float) -x, (float) -y, (float) -z);
                ^
  symbol:   variable GL11
  location: class RenderEntityShuriken
C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft\build\sources\java\com\b
edrockminer\weaponCraft\client\RenderEntityShuriken.java:97: error: cannot find
symbol
                GL11.glPopMatrix();
                ^
  symbol:   variable GL11
  location: class RenderEntityShuriken
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
23 errors
1 warning
:compileJava FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.

* 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: 9.735 secs

C:\Users\Julian\Desktop\Modding\WeaponCraft\WeaponCraft>

 

 

Why can't gradle import lwjgl?

 

Help please!

Link to comment
Share on other sites

rerun

gradlew.bat setupDevWorkspace

, or the decomp workspace if you used that.

 

I rerunned it already, but that wasn't that effective because nearly everything was skipped:

 

****************************
Powered By MCP:
http://mcp.ocean-labs.de/
Searge, ProfMobius, Fesh0r,
R4wk, ZeuX, IngisKahn
MCP Data version : unknown
****************************
C:\Users\Julian\Desktop\Modding\Forge\build\natives
:extractUserDev
:getAssetsIndex
:getAssets
:copyAssets
:downloadClient SKIPPED
:downloadServer SKIPPED
:mergeJars SKIPPED
:applyBinPatches SKIPPED
:downloadMcpTools UP-TO-DATE
:genSrgs UP-TO-DATE
:getJavadocs SKIPPED
:deobfBinJar UP-TO-DATE
:extractNatives
:setupDevWorkspace

BUILD SUCCESSFUL

Total time: 20.746 secs

 

Link to comment
Share on other sites

  • 3 weeks later...

I have to come back to this topic, because I created another Mod which causes the same problems.

Errors:

 

****************************
Powered By MCP:
http://mcp.ocean-labs.de/
Searge, ProfMobius, Fesh0r,
R4wk, ZeuX, IngisKahn
MCP Data version : unknown
****************************
:compileApiJava UP-TO-DATE
:processApiResources UP-TO-DATE
:apiClasses UP-TO-DATE
:sourceMainJava UP-TO-DATE
:compileJava
warning: [options] bootstrap class path not set in conjunction with -source 1.6
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\GuiBookshelf.java:5: error: package io.ne
tty.buffer does not exist
import io.netty.buffer.ByteBuf;
                      ^
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\GuiBookshelf.java:6: error: package io.ne
tty.buffer does not exist
import io.netty.buffer.Unpooled;
                      ^
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\GuiBookshelf.java:23: error: package org.
apache.logging.log4j does not exist
import org.apache.logging.log4j.LogManager;
                               ^
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\GuiBookshelf.java:24: error: package org.
apache.logging.log4j does not exist
import org.apache.logging.log4j.Logger;
                               ^
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\GuiBookshelf.java:25: error: package org.
lwjgl.input does not exist
import org.lwjgl.input.Keyboard;
                      ^
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\GuiBookshelf.java:26: error: package org.
lwjgl.opengl does not exist
import org.lwjgl.opengl.GL11;
                       ^
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:10: error:
package org.lwjgl.opengl does not exist
import org.lwjgl.opengl.GL11;
                       ^
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\GuiBookshelf.java:85: error: cannot find
symbol
        Keyboard.enableRepeatEvents(false);
        ^
  symbol:   variable Keyboard
  location: class GuiBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\GuiBookshelf.java:134: error: cannot find
symbol
        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
        ^
  symbol:   variable GL11
  location: class GuiBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\GuiBookshelf.java:179: error: cannot find
symbol
                    GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
                    ^
  symbol:   variable GL11
  location: class NextPageButton
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:27: error:
cannot find symbol
        GL11.glPushMatrix();
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:28: error:
cannot find symbol
        GL11.glTranslatef((float)x + 0.5F, (float)y + 0.75F, (float)z + 0.5F);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:29: error:
cannot find symbol
        GL11.glRotatef(180, 0, 0, 1);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:30: error:
cannot find symbol
        GL11.glRotatef(Minecraft.getMinecraft().thePlayer.rotationYawHead, 0, 1,
0);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:31: error:
cannot find symbol
        GL11.glTranslatef(0.0F, 0.0F, -0.75F);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:32: error:
cannot find symbol
        GL11.glNormal3f(0.0F, 0.0F, 1.0F);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:33: error:
cannot find symbol
        GL11.glScalef(0.03F, 0.03F, 0.03F);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:35: error:
cannot find symbol
        GL11.glEnable(GL11.GL_ALPHA_TEST);
                      ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:35: error:
cannot find symbol
        GL11.glEnable(GL11.GL_ALPHA_TEST);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:36: error:
cannot find symbol
        GL11.glDisable(GL11.GL_LIGHTING);
                       ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:36: error:
cannot find symbol
        GL11.glDisable(GL11.GL_LIGHTING);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:37: error:
cannot find symbol
        GL11.glDepthMask(false);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:38: error:
cannot find symbol
        GL11.glDisable(GL11.GL_DEPTH_TEST);
                       ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:38: error:
cannot find symbol
        GL11.glDisable(GL11.GL_DEPTH_TEST);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:39: error:
cannot find symbol
        GL11.glEnable(GL11.GL_BLEND);
                      ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:39: error:
cannot find symbol
        GL11.glEnable(GL11.GL_BLEND);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:44: error:
cannot find symbol
        GL11.glDisable(GL11.GL_TEXTURE_2D);
                       ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:44: error:
cannot find symbol
        GL11.glDisable(GL11.GL_TEXTURE_2D);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:53: error:
cannot find symbol
        GL11.glEnable(GL11.GL_TEXTURE_2D);
                      ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:53: error:
cannot find symbol
        GL11.glEnable(GL11.GL_TEXTURE_2D);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:55: error:
cannot find symbol
        GL11.glEnable(GL11.GL_DEPTH_TEST);
                      ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:55: error:
cannot find symbol
        GL11.glEnable(GL11.GL_DEPTH_TEST);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:56: error:
cannot find symbol
        GL11.glDepthMask(true);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:57: error:
cannot find symbol
        GL11.glEnable(GL11.GL_LIGHTING);
                      ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:57: error:
cannot find symbol
        GL11.glEnable(GL11.GL_LIGHTING);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:58: error:
cannot find symbol
        GL11.glDisable(GL11.GL_BLEND);
                       ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:58: error:
cannot find symbol
        GL11.glDisable(GL11.GL_BLEND);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:59: error:
cannot find symbol
        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\source
s\java\com\bedrockminer\bookshelf\core\RenderTileEntityBookshelf.java:60: error:
cannot find symbol
        GL11.glPopMatrix();
        ^
  symbol:   variable GL11
  location: class RenderTileEntityBookshelf
Note: C:\Users\Julian\Desktop\Modding\ReadableBookshelf\ReadableBookshelf\build\
sources\java\com\bedrockminer\bookshelf\core\ItemBlockReadableBookshelf.java use
s unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
39 errors
1 warning
:compileJava FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.

* 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: 21.277 secs
Drücken Sie eine beliebige Taste . . .

 

 

I reinstalled forge two times with this parameters:

gradlew.bat cleanCache setupDecompWorkspace setupDevWorkspace eclipse

 

I still get te same error. What is wrong with the GL11 classes?!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
    • OLXTOTO adalah situs bandar togel online resmi terbesar dan terpercaya di Indonesia. Bergabunglah dengan OLXTOTO dan nikmati pengalaman bermain togel yang aman dan terjamin. Koleksi toto 4D dan togel toto terlengkap di OLXTOTO membuat para member memiliki pilihan taruhan yang lebih banyak. Sebagai situs togel terpercaya, OLXTOTO menjaga keamanan dan kenyamanan para membernya dengan sistem keamanan terbaik dan enkripsi data. Transaksi yang cepat, aman, dan terpercaya merupakan jaminan dari OLXTOTO. Nikmati layanan situs toto terbaik dari OLXTOTO dengan tampilan yang user-friendly dan mudah digunakan. Layanan pelanggan tersedia 24/7 untuk membantu para member. Bergabunglah dengan OLXTOTO sekarang untuk merasakan pengalaman bermain togel yang menyenangkan dan menguntungkan.
    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
  • Topics

×
×
  • Create New...

Important Information

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