<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[gradle build error]]></title><description><![CDATA[<p dir="auto">error:</p>
<pre><code>PS C:\Users\sex\fart\LiquidBounce b72 Custom&gt; gradle build

FAILURE: Build failed with an exception.

* Where:
Build file 'C:\Users\sex\fart\LiquidBounce b72 Custom\1.8.9-Forge\build.gradle' line: 29

* What went wrong:
A problem occurred evaluating project ':1.8.9-Forge'.
&gt; org.gradle.api.tasks.SourceSet.getCompileConfigurationName()Ljava/lang/String;

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/7.0/userguide/command_line_interface.html#sec:command_line_warnings

BUILD FAILED in 1s
</code></pre>
<p dir="auto">build.gradle file:</p>
<pre><code>buildscript {

    repositories {
        jcenter()
        mavenLocal()
        mavenCentral()

        maven { url 'https://files.minecraftforge.net/maven' }
        maven { url 'https://plugins.gradle.org/m2' }
        maven { url 'https://repo.spongepowered.org/maven' }
    }

    dependencies {
        classpath group: 'org.jetbrains.kotlin', name: 'kotlin-gradle-plugin', version: kotlin_version
        classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '2.1-SNAPSHOT'
        classpath group: 'org.spongepowered', name: 'mixingradle', version: '0.6-SNAPSHOT'
        classpath group: 'com.github.jengelman.gradle.plugins', name: 'shadow', version: '4.0.4'
    }
}

// Languages
apply plugin: 'java'
apply plugin: 'kotlin'

// IDE
apply plugin: 'idea'

// Minecraft
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'org.spongepowered.mixin'

// Jar packaging
apply plugin: 'com.github.johnrengelman.shadow'

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
compileJava.options.encoding = 'UTF-8'

compileKotlin {
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

compileTestKotlin {
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

idea {
    module {
        inheritOutputDirs = true
    }
}

archivesBaseName = 'LiquidBounce'

minecraft {
    version = '1.8.9-11.15.1.2318-1.8.9'
    runDir = 'run'
    mappings = 'stable_22'
    makeObfSourceJar = true
}

repositories {
    mavenLocal()
    mavenCentral()
    jcenter()

    maven { url 'https://jitpack.io' }
    maven { url 'https://repo.spongepowered.org/maven/' }
}

dependencies {
    compile('org.spongepowered:mixin:0.7.10-SNAPSHOT') {
        exclude module: 'launchwrapper'
    }

    compile 'com.jagrosh:DiscordIPC:0.4'
    compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: kotlin_version

    implementation 'com.github.TheAltening:TheAltening4j:d0771f42d3'
    implementation 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT'
    compile 'com.github.TheAltening:TheAltening4j:-SNAPSHOT'
    compile 'com.github.TheAltening:API-Java-AuthLib:-SNAPSHOT'

    compile fileTree(include: ['*.jar'], dir: 'libs')
}

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'
    }

    rename '(.+_at.cfg)', 'META-INF/$1'
}

mixin {
    add sourceSets.main, 'liquidbounce.mixins.refmap.json'
}

jar {
    manifest.attributes(
            'MixinConfigs': 'liquidbounce.forge.mixins.json',
            'tweakClass': 'org.spongepowered.asm.launch.MixinTweaker',
            'TweakOrder': 0,
            'FMLCorePluginContainsFMLMod': 'net.ccbluex.liquidbounce.injection.forge.MixinLoader',
            'FMLCorePlugin': 'net.ccbluex.liquidbounce.injection.forge.TransformerLoader',
            'FMLAT': 'liquidbounce_at.cfg',
            'Manifest-Version': 1.0,
            'Main-Class': 'net.ccbluex.liquidinstruction.LiquidInstructionKt'
    )
}

shadowJar {
    dependencies {
        include(dependency('org.spongepowered:mixin'))
        include(dependency('com.jagrosh:DiscordIPC'))
        include(dependency('org.json:json'))
        include(dependency('org.slf4j:slf4j-api'))
        include(dependency('log4j:log4j:1.2.17'))
        include(dependency('org.scijava:native-lib-loader'))
        include(dependency('com.kohlschutter.junixsocket:junixsocket-common'))
        include(dependency('com.kohlschutter.junixsocket:junixsocket-native-common'))

        include(dependency('org.jetbrains.kotlin:kotlin-stdlib'))

        include(dependency('com.github.TheAltening:API-Java'))
        include(dependency('com.github.TheAltening:API-Java-AuthLib'))
    }

    exclude 'dummyThing'
    exclude 'LICENSE.txt'

    classifier = ''
}

reobf { shadowJar { mappingType = 'SEARGE' } }
tasks.reobfShadowJar.mustRunAfter shadowJar

configurations {
    external
    compile.extendsFrom external
}

build.dependsOn shadowJar

</code></pre>
]]></description><link>https://forum.liquidbounce.net/topic/2839/gradle-build-error</link><generator>RSS for Node</generator><lastBuildDate>Fri, 14 Aug 2026 15:34:22 GMT</lastBuildDate><atom:link href="https://forum.liquidbounce.net/topic/2839.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 06 Aug 2021 16:27:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to gradle build error on Sat, 14 Aug 2021 12:03:25 GMT]]></title><description><![CDATA[<p dir="auto">wth</p>
<p dir="auto">// 08 chars</p>
]]></description><link>https://forum.liquidbounce.net/post/23296</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23296</guid><dc:creator><![CDATA[ENDER1355]]></dc:creator><pubDate>Sat, 14 Aug 2021 12:03:25 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Sat, 14 Aug 2021 11:02:13 GMT]]></title><description><![CDATA[<p dir="auto">lol what</p>
]]></description><link>https://forum.liquidbounce.net/post/23290</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23290</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Sat, 14 Aug 2021 11:02:13 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Sat, 14 Aug 2021 09:38:47 GMT]]></title><description><![CDATA[<p dir="auto">"fart sex is sigma bot" in suckma discord</p>
]]></description><link>https://forum.liquidbounce.net/post/23275</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23275</guid><dc:creator><![CDATA[ENDER1355]]></dc:creator><pubDate>Sat, 14 Aug 2021 09:38:47 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Fri, 13 Aug 2021 06:54:57 GMT]]></title><description><![CDATA[<p dir="auto">@poop-dealer you need a responsible parent who doesn't let such a disaster in the forums</p>
]]></description><link>https://forum.liquidbounce.net/post/23195</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23195</guid><dc:creator><![CDATA[ENDER1355]]></dc:creator><pubDate>Fri, 13 Aug 2021 06:54:57 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Fri, 13 Aug 2021 05:03:53 GMT]]></title><description><![CDATA[<p dir="auto">@poop-dealer also why the hell are you pretending to be dort????</p>
]]></description><link>https://forum.liquidbounce.net/post/23193</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23193</guid><dc:creator><![CDATA[ENDER1355]]></dc:creator><pubDate>Fri, 13 Aug 2021 05:03:53 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Fri, 13 Aug 2021 04:56:03 GMT]]></title><description><![CDATA[<p dir="auto">@poop-dealer</p>
<ul>
<li>@BobIsMyManager told me that</li>
<li>i forgor doesnt have to do anything here you freaking retard</li>
<li>cap</li>
</ul>
]]></description><link>https://forum.liquidbounce.net/post/23190</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23190</guid><dc:creator><![CDATA[ENDER1355]]></dc:creator><pubDate>Fri, 13 Aug 2021 04:56:03 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Fri, 13 Aug 2021 03:13:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ender1355" aria-label="Profile: ender1355">@<bdi>ender1355</bdi></a></p>
<ul>
<li>"it has been told me that"</li>
<li>me, fart-sex and i forgor are 3 different people you braindead</li>
</ul>
]]></description><link>https://forum.liquidbounce.net/post/23189</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23189</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Fri, 13 Aug 2021 03:13:22 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Thu, 12 Aug 2021 18:00:32 GMT]]></title><description><![CDATA[<p dir="auto">yes ofc1</p>
]]></description><link>https://forum.liquidbounce.net/post/23174</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23174</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Thu, 12 Aug 2021 18:00:32 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Thu, 12 Aug 2021 11:37:56 GMT]]></title><description><![CDATA[<p dir="auto">@fart-sex it has been told me that you are @poop-dealer is that true?</p>
]]></description><link>https://forum.liquidbounce.net/post/23111</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23111</guid><dc:creator><![CDATA[ENDER1355]]></dc:creator><pubDate>Thu, 12 Aug 2021 11:37:56 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Thu, 12 Aug 2021 11:33:36 GMT]]></title><description><![CDATA[<p dir="auto"><a href="l">yes</a></p>
]]></description><link>https://forum.liquidbounce.net/post/23110</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23110</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Thu, 12 Aug 2021 11:33:36 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Thu, 12 Aug 2021 11:22:08 GMT]]></title><description><![CDATA[<p dir="auto">@bobismymanager yes</p>
]]></description><link>https://forum.liquidbounce.net/post/23108</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23108</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Thu, 12 Aug 2021 11:22:08 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Thu, 12 Aug 2021 07:22:40 GMT]]></title><description><![CDATA[<p dir="auto">doesnt work</p>
]]></description><link>https://forum.liquidbounce.net/post/23098</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23098</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Thu, 12 Aug 2021 07:22:40 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Wed, 11 Aug 2021 20:20:04 GMT]]></title><description><![CDATA[<p dir="auto">legacy liquidbounce code</p>
]]></description><link>https://forum.liquidbounce.net/post/23092</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23092</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Wed, 11 Aug 2021 20:20:04 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Wed, 11 Aug 2021 19:44:19 GMT]]></title><description><![CDATA[<p dir="auto">prob the source code let me check the code for u <img src="https://forum.liquidbounce.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f609.png?v=866ab33d74c" class="not-responsive emoji emoji-android emoji--wink" style="height:23px;width:auto;vertical-align:middle" title=":wink:" alt="😉" /><br />
and check if ur pipes are dirty</p>
]]></description><link>https://forum.liquidbounce.net/post/23078</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23078</guid><dc:creator><![CDATA[Plumer Man]]></dc:creator><pubDate>Wed, 11 Aug 2021 19:44:19 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Tue, 10 Aug 2021 22:45:15 GMT]]></title><description><![CDATA[<p dir="auto">@fart-sex use jdk 16 it works for me</p>
]]></description><link>https://forum.liquidbounce.net/post/23036</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23036</guid><dc:creator><![CDATA[00]]></dc:creator><pubDate>Tue, 10 Aug 2021 22:45:15 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Tue, 10 Aug 2021 22:23:00 GMT]]></title><description><![CDATA[<p dir="auto">yes java 8</p>
]]></description><link>https://forum.liquidbounce.net/post/23035</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23035</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Tue, 10 Aug 2021 22:23:00 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Tue, 10 Aug 2021 21:34:36 GMT]]></title><description><![CDATA[<p dir="auto">@fart-sex <s>feel me kid</s> i think its an java related thing, did you use 8?</p>
]]></description><link>https://forum.liquidbounce.net/post/23034</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23034</guid><dc:creator><![CDATA[ENDER1355]]></dc:creator><pubDate>Tue, 10 Aug 2021 21:34:36 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Tue, 10 Aug 2021 21:33:17 GMT]]></title><description><![CDATA[<p dir="auto">I tried with fdp client, legacy liquidbounce</p>
]]></description><link>https://forum.liquidbounce.net/post/23033</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23033</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Tue, 10 Aug 2021 21:33:17 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Tue, 10 Aug 2021 20:28:59 GMT]]></title><description><![CDATA[<p dir="auto">@fart-sex try downloading a new lb src (legacy) and use gradlew build it should work</p>
]]></description><link>https://forum.liquidbounce.net/post/23030</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/23030</guid><dc:creator><![CDATA[00]]></dc:creator><pubDate>Tue, 10 Aug 2021 20:28:59 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Mon, 09 Aug 2021 20:37:55 GMT]]></title><description><![CDATA[<p dir="auto">im trying to get an answer, not a fucking joke</p>
]]></description><link>https://forum.liquidbounce.net/post/22935</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/22935</guid><dc:creator><![CDATA[DreamWasFucked]]></dc:creator><pubDate>Mon, 09 Aug 2021 20:37:55 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Sat, 07 Aug 2021 21:38:34 GMT]]></title><description><![CDATA[<p dir="auto">@fart-sex add mvncenteral to the build.gradle</p>
]]></description><link>https://forum.liquidbounce.net/post/22847</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/22847</guid><dc:creator><![CDATA[00]]></dc:creator><pubDate>Sat, 07 Aug 2021 21:38:34 GMT</pubDate></item><item><title><![CDATA[Reply to gradle build error on Sat, 07 Aug 2021 13:02:25 GMT]]></title><description><![CDATA[<p dir="auto">@fart-sex download latest gradle</p>
<blockquote>
<p dir="auto">Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0</p>
</blockquote>
]]></description><link>https://forum.liquidbounce.net/post/22832</link><guid isPermaLink="true">https://forum.liquidbounce.net/post/22832</guid><dc:creator><![CDATA[ENDER1355]]></dc:creator><pubDate>Sat, 07 Aug 2021 13:02:25 GMT</pubDate></item></channel></rss>