Loading Runelite Fernflower

Aug 15, 2008
816
30
0
Hi there,

Everytime I try to load Runelite I get the following problem;
Code:
Execution failed for task ':buildSrc:compileKotlin'.
> Error while evaluating property 'filteredArgumentsMap' of task ':buildSrc:compileKotlin'
   > Could not resolve all files for configuration ':buildSrc:compileClasspath'.
      > Could not find net.runelite:fernflower:07082019.
        Searched in the following locations:
          - https://repo.maven.apache.org/maven2/net/runelite/fernflower/07082019/fernflower-07082019.pom
          - https://raw.githubusercontent.com/open-osrs/hosting/master/net/runelite/fernflower/07082019/fernflower-07082019.pom
        Required by:
            project :buildSrc

Possible solution:
 - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html

I'm wondering if anyone got a fix for this, or has the same..
 
Hi there,

Everytime I try to load Runelite I get the following problem;
Code:
Execution failed for task ':buildSrc:compileKotlin'.
> Error while evaluating property 'filteredArgumentsMap' of task ':buildSrc:compileKotlin'
   > Could not resolve all files for configuration ':buildSrc:compileClasspath'.
      > Could not find net.runelite:fernflower:07082019.
        Searched in the following locations:
          - https://repo.maven.apache.org/maven2/net/runelite/fernflower/07082019/fernflower-07082019.pom
          - https://raw.githubusercontent.com/open-osrs/hosting/master/net/runelite/fernflower/07082019/fernflower-07082019.pom
        Required by:
            project :buildSrc

Possible solution:
 - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html

I'm wondering if anyone got a fix for this, or has the same..

Change the version from 07082019 to 20171017 or if you want to stick to that version add the following maven repo

Code:
maven(url = "https://raw.githubusercontent.com/open-osrs/hosting/master")

Highly recommend joining Discord by the way!
 
  • Like
Reactions: R0cky 0wnz
Change the version from 07082019 to 20171017 or if you want to stick to that version add the following maven repo

Code:
maven(url = "https://raw.githubusercontent.com/open-osrs/hosting/master")

Highly recommend joining Discord by the way!

You mean the Rune-Server discord?

I keep trying and trying, but I still don't manage to get it to work:'(

rKTto5D.png


Even I tried to remove (code below), but no succes...
Code:
maven(url = "https://raw.githubusercontent.com/open-osrs/hosting/master")
 
Last edited by a moderator:
You mean the Rune-Server discord?

I keep trying and trying, but I still don't manage to get it to work:'(

rKTto5D.png


Even I tried to remove (code below), but no succes...
Code:
maven(url = "https://raw.githubusercontent.com/open-osrs/hosting/master")

I did say OR, if you're going to use the repo I gave you set the version to 07082019
 
I did say OR, if you're going to use the repo I gave you set the version to 07082019

I know you did, and what I meant to say was that I tried both ways. Just for some reason it doesn't wants to work.
 
I just changed my remotes to devious
build.gradle.kts

I changed the exclusive content part to change from "https://raw.githubusercontent.com/open-osrs/hosting/master"
Code:
        exclusiveContent {
            forRepository {
                maven {
                    url = uri("https://raw.githubusercontent.com/jbx5/hosting/master")
                }
            }

And then in buildSrc/build.gradle.kts changed "https://raw.githubusercontent.com/open-osrs/hosting/master"

so that it looks like

Code:
repositories {
    mavenCentral()
    maven(url = "https://raw.githubusercontent.com/jbx5/hosting/master")
}


Its worth noting that you can also just delete the fernflower task from buildsrc and remove it from the gradle also if you are not actively using the deobfuscation tools.
 

Users who are viewing this thread (total: 1, members: 0, guests: 1)