Release 1.3

This commit is contained in:
Telesphoreo 2023-07-22 22:51:42 -05:00
parent a7c76e6089
commit 492c6bd8eb
No known key found for this signature in database
GPG Key ID: 68B745F7F8C2FADA
5 changed files with 12 additions and 11 deletions

View File

@ -5,7 +5,7 @@ plugins {
} }
group = "dev.plex" group = "dev.plex"
version = "1.3-SNAPSHOT" version = "1.3"
description = "Module-HTTPD" description = "Module-HTTPD"
repositories { repositories {
@ -28,11 +28,11 @@ repositories {
} }
dependencies { dependencies {
implementation("org.projectlombok:lombok:1.18.26") implementation("org.projectlombok:lombok:1.18.28")
annotationProcessor("org.projectlombok:lombok:1.18.26") annotationProcessor("org.projectlombok:lombok:1.18.28")
implementation("io.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT") implementation("io.papermc.paper:paper-api:1.20.1-R0.1-SNAPSHOT")
implementation("dev.plex:server:1.3-SNAPSHOT") implementation("dev.plex:server:1.3")
implementation("org.json:json:20230227") implementation("org.json:json:20230618")
implementation("org.reflections:reflections:0.10.2") implementation("org.reflections:reflections:0.10.2")
implementation("org.eclipse.jetty:jetty-server:11.0.15") implementation("org.eclipse.jetty:jetty-server:11.0.15")
implementation("org.eclipse.jetty:jetty-servlet:11.0.15") implementation("org.eclipse.jetty:jetty-servlet:11.0.15")

Binary file not shown.

View File

@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
networkTimeout=10000 networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

7
gradlew vendored
View File

@ -85,9 +85,6 @@ done
APP_BASE_NAME=${0##*/} APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value. # Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum MAX_FD=maximum
@ -197,6 +194,10 @@ if "$cygwin" || "$msys" ; then
done done
fi fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command; # Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in # shell script including quotes and variable substitutions, so put them in

View File

@ -1,4 +1,4 @@
name: Module-HTTPD name: Module-HTTPD
version: 1.3-SNAPSHOT version: 1.3
description: HTTPD server for Plex description: HTTPD server for Plex
main: dev.plex.HTTPDModule main: dev.plex.HTTPDModule