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 "[Hidden Content]"
}
}
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("[Hidden Content]")
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