Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hello,

 

I want to build my mod, and in the process it fails the

compileJava

task. This is the log:

C:\Users\Lars\Desktop\Modding-Development\MineTech>gradlew build
****************************
Powered By MCP:
http://mcp.ocean-labs.de/
Searge, ProfMobius, Fesh0r,
R4wk, ZeuX, IngisKahn, bspkrs
MCP Data version : unknown
****************************
:apiJar UP-TO-DATE
: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\Lars\Desktop\Modding-Development\MineTech\build\sources\java\larsg310\m
ods\minetech\multiblock\Multiblocks.java:12: error: cannot find symbol
        STEEL_FURNACE = new MultiblockSteelFurnace();
                            ^
  symbol:   class MultiblockSteelFurnace
  location: class Multiblocks
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 error
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: 48.43 secs

However, Eclipse doesn't show any compile errors and I can run my mod fine in Eclipse. Here is my

build.gradle

:

buildscript {
    repositories {
        mavenCentral()
        maven {
            name = "forge"
            url = "http://files.minecraftforge.net/maven"
        }
        maven {
            name = "sonatype"
            url = "https://oss.sonatype.org/content/repositories/snapshots/"
        }
    }
    dependencies {
        classpath 'net.minecraftforge.gradle:ForgeGradle:1.2-SNAPSHOT'
    }
}

apply plugin: 'forge'

version = "v0.01-1.7.10"
group= "larsg310.mods.minetech"
archivesBaseName = "MineTech"

minecraft {
    version = "1.7.10-10.13.4.1481-1.7.10"
    runDir = "eclipse"
}

dependencies {

}

task deobfJar(type: Jar) {
    from sourceSets.main.output
    classifier = 'deobf'
}

task sourceJar(type: Jar) {
    from sourceSets.main.allSource
    classifier = 'sources'
}

task apiJar(type: Jar) {
    from(sourceSets.main.allSource) {
        include 'larsg310/mods/minetech/api/**'
    }
    classifier = 'api'
}

tasks.build.dependsOn('sourceJar', 'deobfJar', 'apiJar')

processResources
{
    inputs.property "version", project.version
    inputs.property "mcversion", project.minecraft.version
    from(sourceSets.main.resources.srcDirs) {
        include 'mcmod.info'
                
        expand 'version':project.version, 'mcversion':project.minecraft.version
    }
        
    from(sourceSets.main.resources.srcDirs) {
        exclude 'mcmod.info'
    }
}

The console log is refering to this class:

package larsg310.mods.minetech.multiblock;

import larsg310.mods.minetech.api.multiblock.Multiblock;
import larsg310.mods.minetech.api.multiblock.MultiblockRegistry;

public class Multiblocks
{
    public static Multiblock STEEL_FURNACE;
    
    public static void registerMultiblocks()
    {
        STEEL_FURNACE = new MultiblockSteelFurnace(); //This is the line the console is referring to
        MultiblockRegistry.registerMultiblock(STEEL_FURNACE);
    }
}

I don't have a constructor in the MultiblockSteelFurnace class, so it uses the default constructor.

 

Does anyone know what is causing the issue? I must be missing something very obvious.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

  • 1 month later...

add

 

sourceCompatibility = 1.7

targetCompatibility = 1.7

 

 

after 'apply plugin'

Long time Bukkit & Forge Programmer

Happy to try and help

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.