update deps
All checks were successful
Publish to snapshot maven / build (push) Successful in 27s

This commit is contained in:
moehreag 2024-08-28 11:23:58 +02:00
parent f32d237a2d
commit be4e6530f4
4 changed files with 20 additions and 5 deletions

View file

@ -7,7 +7,7 @@ plugins {
}
group = "dev.frogmc"
version = "0.0.1-alpha.24"
version = "0.0.1-alpha.25"
repositories {
maven {

View file

@ -1,10 +1,10 @@
[versions]
thyroxine = "0.0.1-alpha.12"
nightconfig = "3.7.3"
thyroxine = "0.0.1-alpha.13"
nightconfig = "3.8.1"
mixin = "0.15.0+mixin.0.8.7"
annotations = "24.1.0"
mixinextras = "0.3.6"
mixinextras = "0.4.1"
[libraries]

View file

@ -1,6 +1,6 @@
plugins {
java
id("dev.frogmc.phytotelma") version "0.0.1-alpha.19"
id("dev.frogmc.phytotelma") version "0.0.1-alpha.20"
}
dependencies {

View file

@ -1,5 +1,10 @@
package dev.frogmc.frogloader.api.env;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import lombok.AllArgsConstructor;
/**
@ -37,10 +42,20 @@ public enum Env {
return this.identifier;
}
/**
* Denotes this element to be stripped in non-client environments
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})
public @interface Client {
}
/**
* Denotes this element to be stripped in non-client environments
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD})
public @interface Server {
}