Rebranding

This commit is contained in:
Ilya 2020-12-17 13:43:51 +03:00
parent d01d10a7aa
commit 967265c749
3 changed files with 7 additions and 11 deletions

View File

@ -3,7 +3,7 @@ plugins {
}
group = 'ru.redguy'
version = '1.0-SNAPSHOT'
version = '1.0'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
@ -19,4 +19,4 @@ jar {
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
}
sponge.plugin.id = 'crossplattormbot_minecraft'
sponge.plugin.id = 'crossplattormresender_minecraft'

View File

@ -1,4 +1,4 @@
package ru.redguy.crossplattormbot_minecraft;
package ru.redguy.crossplattormresender_minecraft;
import org.java_websocket.WebSocket;
import org.java_websocket.drafts.Draft;
@ -10,9 +10,6 @@ import org.spongepowered.api.Sponge;
import org.spongepowered.api.entity.living.player.Player;
import org.spongepowered.api.text.Text;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.InetSocketAddress;
import java.net.UnknownHostException;
import java.nio.ByteBuffer;

View File

@ -1,6 +1,5 @@
package ru.redguy.crossplattormbot_minecraft;
package ru.redguy.crossplattormresender_minecraft;
import com.google.gson.JsonObject;
import com.google.inject.Inject;
import org.json.JSONObject;
import org.slf4j.Logger;
@ -13,15 +12,15 @@ import org.spongepowered.api.plugin.Plugin;
import java.net.UnknownHostException;
@Plugin(
id = "crossplattormbot_minecraft",
name = "Crossplattormbot=",
id = "crossplattormresender_minecraft",
name = "Crossplattormresender=",
description = "bot in mine!",
url = "https://redguy.ru",
authors = {
"RedGuy"
}
)
public class Crossplattormbot {
public class CrossplattormResender {
@Inject
private Logger logger;