Jump to content
Existing user? Sign In

Sign In



Sign Up
Search In
  • More options...
Find results that contain...
Find results in...

The 'fix' for the bootstrap in gradle


Recommended Posts

Plugin [id: 'com.mark.bootstrap.bootstrap', artifact: 'com.github.Mark7625:bootstrap-release:9457850336'] was not found in any of the following sources:

 

 

The 'fix' for the bootstrap is legit editing 2 numbers or deleting 4 lines in gradle

 

 

i can not seem to figure out what lines need to deleted or what 2 numbers need editing (added/changed/removed)

 

 

plugins {
java
application
id("com.github.johnrengelman.shadow") version "8.1.1"
id("com.mark.bootstrap.bootstrap")
}


repositories {
    mavenCentral()
    maven {
        url "https://raw.githubusercontent.com/OpenRune/hosting/master"
    }
}
dependencies {
classpath("com.guardsquare:proguard-gradle:7.3.0")
}
}

configure<com.mark.bootstrap.BootstrapPluginExtension> {
uploadType.set(com.mark.bootstrap.UploadType.FTP)
buildType.set("normal")
customRepo.set("https://zaryte.io/client/normal/repo/")
passiveMode.set(true)
externalLibs.set(listOf(File("${rootProject.buildDir}\\libs\\")))
}


allprojects {
apply(plugin = "java")
apply(plugin = "application")
apply(plugin = "com.github.johnrengelman.shadow")

java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
}

dependencies {
implementation("dev.openrune:filestore:1.2.4")
}
implementation(project("game"))
}

tasks.withType<JavaCompile>().configureEach {
options.isWarnings = false
options.isDeprecation = false
options.isIncremental = true
}

tasks {
jar {
destinationDirectory.set(file("${rootProject.buildDir}\\"))
}
}

application {
mainClass.set("Application")
}

tasks {
val gameProjectPath = "game"
val runeliteProjectPath = "runelite"

jar {
destinationDirectory.set(file("${rootProject.buildDir}\\tmp\\"))
}

Thank you for taking time to look at my post if you have any idea how to fix or where i should be looking id greatly appreciate it

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

Contact

ltlimes

RSPS Partners

RedemptionRSPS

What is a RSPS?

A RSPS, also known as RuneScape private server, is an online game based on RuneScape, and controlled by independent individuals.

Popular RSPS Servers

oldschoolrsps Runewild RedemptionRSPS

Disclaimer

Runesuite is not affiliated with runescape, jagex, rune-server and runelocus in any way & exists solely for educational purposes.

×
×
  • Create New...