This commit is contained in:
Len 2022-10-19 19:22:56 +02:00
parent 07413c57bc
commit 83e5834c0f
11 changed files with 12 additions and 13 deletions

View File

@ -7,9 +7,7 @@ dependencies {
}
tasks {
jar {
enabled = false
}
}
publishing {

View File

@ -1,4 +1,4 @@
package com.alttd;
package com.alttd.datalock;
import org.jetbrains.annotations.ApiStatus;

View File

@ -1,4 +1,4 @@
package com.alttd;
package com.alttd.datalock;
enum RequestType {
TRY_LOCK("try-lock"),

View File

@ -1,4 +1,4 @@
package com.alttd;
package com.alttd.datalock;
public enum ResponseType {
TRY_LOCK_RESULT,

View File

@ -5,7 +5,7 @@ plugins {
}
allprojects {
group = "com.alttd"
group = "com.alttd.datalock"
version = "1.0.0-SNAPSHOT"
description = "Altitude DataLock Library."
}

View File

@ -1,4 +1,4 @@
package com.alttd;
package com.alttd.datalock;
import com.google.common.io.ByteArrayDataOutput;
import com.google.common.io.ByteStreams;

View File

@ -1,4 +1,4 @@
package com.alttd;
package com.alttd.datalock;
import org.bukkit.plugin.java.JavaPlugin;

View File

@ -1,4 +1,4 @@
package com.alttd;
package com.alttd.datalock;
import java.util.Collections;
import java.util.HashMap;

View File

@ -1,4 +1,4 @@
package com.alttd;
package com.alttd.datalock;
import java.util.UUID;

View File

@ -1,5 +1,6 @@
package com.alttd;
package com.alttd.datalock;
import com.alttd.datalock.ResponseType;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
import org.jetbrains.annotations.NotNull;

View File

@ -1,4 +1,4 @@
package com.alttd;
package com.alttd.datalock;
import com.google.common.io.ByteArrayDataInput;
import com.google.common.io.ByteStreams;