Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
Fix packages and update konfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStegii committed Oct 17, 2022
1 parent 01af88a commit d0f621d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ compileJava.options.encoding = 'UTF-8'
// First number indicates breaking changes (removals etc.)
// Second number indicates non-breaking changes (new libraries etc.)
// Third number indicates bug fixes or small updates
version = '1.3.1'
version = '1.3.2'

sourceSets {
main {
Expand Down Expand Up @@ -76,7 +76,7 @@ dependencies {
this.addModularInternal('com.googlecode.json-simple:json-simple:1.1.1', 'gson', false)
this.addModularInternal('net.dv8tion:JDA:5.0.0-alpha.4', 'jda', false)
this.addModularInternal('com.github.CuukyOfficial:CFW:master-SNAPSHOT', 'CFW', true)
this.addModularInternal('com.github.KettleMC-Network:Konfiguration:2.0.2', 'konfiguration', true)
this.addModularInternal('com.github.KettleMC-Network:Konfiguration:2.0.4', 'konfiguration', true)
this.addModularInternal('com.github.almighty-satan:jo2sql:1.2.2', 'jo2sql', true)
this.addModularInternal('net.kyori:adventure-text-minimessage:4.11.0', 'minimessages', false)
this.addModularInternal('com.oracle.ojdbc:ojdbc8:19.3.0.0', 'ojdbc', false)
Expand Down Expand Up @@ -135,7 +135,7 @@ processResources {
filter ReplaceTokens, tokens: [name: 'LibrariesBukkit']
filter ReplaceTokens, tokens: [version: version]
filter ReplaceTokens, tokens: [author: 'KettleMC']
filter ReplaceTokens, tokens: [main: 'net.kettlemc.libraries.Libraries']
filter ReplaceTokens, tokens: [main: 'net.kettlemc.libraries.LibrariesBukkit']
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.kettlemc.plugin;
package net.kettlemc.libraries;

import org.bukkit.plugin.java.JavaPlugin;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.kettlemc.plugin;
package net.kettlemc.libraries;

import com.google.inject.Inject;
import com.velocitypowered.api.event.Subscribe;
Expand All @@ -10,7 +10,7 @@
import java.nio.file.Path;
import java.util.logging.Logger;

@Plugin(id = "libraries", name = "Libraries", authors = "KettleMC", version = "1.3.0")
@Plugin(id = "libraries", name = "Libraries", authors = "KettleMC", version = "1.3.2")
public class LibrariesVelocity {

private final ProxyServer server;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.kettlemc.plugin;
package net.kettlemc.libraries;

import javax.swing.JOptionPane;

Expand Down

0 comments on commit d0f621d

Please sign in to comment.