Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
bump idofront (#5)
Browse files Browse the repository at this point in the history
* bump idofront

* bump ido
  • Loading branch information
Boy0000 authored Oct 3, 2022
1 parent 9a79cb3 commit 5ae03bd
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 21 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
id("com.mineinabyss.conventions.kotlin")
id("com.mineinabyss.conventions.nms")
id("com.mineinabyss.conventions.publication")
id("com.mineinabyss.conventions.autoversion")
id("com.github.johnrengelman.shadow") version "7.0.0"
}

Expand All @@ -20,7 +21,6 @@ allprojects {
version = rootProject.version

repositories {
mavenLocal()
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://repo.dmulloy2.net/nexus/repository/public/")//ProtocolLib
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
Expand All @@ -29,7 +29,7 @@ allprojects {
dependencies {
compileOnly(kotlin("stdlib-jdk8"))
compileOnly("com.comphenix.protocol:ProtocolLib:5.0.0-SNAPSHOT") {
// this dep wasn"t being resolved.
// this dep wasn't being resolved.
exclude(group = "com.comphenix.executors")
}
}
Expand All @@ -51,8 +51,8 @@ tasks {
shadowJar {
archiveClassifier.set("")
}

sourcesJar {
from(sourceSets.main.get().allSource)
}
//
// sourcesJar {
// from(sourceSets.main.get().allSource)
// }
}
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version=0.5
version=0.6
group=com.mineinabyss
kotlinVersion=1.6.10
kotlinVersion=1.7.10
serverVersion=1.19.2-R0.1-SNAPSHOT
idofrontVersion=0.12.112
idofrontVersion=0.14.6
publishComponentName=java
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
9 changes: 2 additions & 7 deletions protocolburrito-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,16 @@ plugins {
id("com.mineinabyss.conventions.papermc")
id("com.mineinabyss.conventions.nms")
id("com.mineinabyss.conventions.copyjar")
id("com.mineinabyss.conventions.autoversion")
// id("de.nycode.spigot-dependency-loader") version "1.0.3"
}

dependencies {
implementation(project(":"))
implementation("com.mineinabyss:idofront:$idofrontVersion")
implementation(libs.bundles.idofront.core)
}

tasks {
shadowJar {
minimize {
include(dependency("com.mineinabyss:idofront.*:.*"))
}
}

assemble {
dependsOn(project(":protocolburrito-generator").tasks.assemble)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.mineinabyss.protocolburrito

import com.mineinabyss.idofront.platforms.IdofrontPlatforms
import com.mineinabyss.idofront.platforms.Platforms
import org.bukkit.plugin.java.JavaPlugin

class ProtocolBurritoPlugin : JavaPlugin() {
override fun onLoad() {
IdofrontPlatforms.load(this, "mineinabyss")
Platforms.load(this, "mineinabyss")
}
override fun onEnable() {
logger.info("ProtocolBurrito is ready to start wrapping packets!")
Expand Down
2 changes: 0 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
mavenLocal()
google()
maven("https://repo.mineinabyss.com/releases")
maven("https://repo.papermc.io/repository/maven-public/")
Expand All @@ -28,7 +27,6 @@ dependencyResolutionManagement {
val idofrontVersion: String by settings

repositories {
mavenLocal()
maven("https://repo.mineinabyss.com/releases")
}

Expand Down

0 comments on commit 5ae03bd

Please sign in to comment.