Skip to content

Commit 9d3f3e7

Browse files
Update dependencies
1 parent 9fec9d4 commit 9d3f3e7

File tree

14 files changed

+49
-47
lines changed

14 files changed

+49
-47
lines changed

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
org.gradle.jvmargs=-Xmx1024M
2-
quarkusPlatformVersion=3.25.3
3-
quarkusPluginVersion=3.25.3
4-
sentryVersion=8.19.1
2+
quarkusPlatformVersion=3.30.1
3+
quarkusPluginVersion=3.30.1
4+
sentryVersion=8.27.1
55
javaXtVersion=2.1.11
66
twelveMonkeysVersion=3.12.0
7-
spotlessPluginVersion=7.2.1
8-
lombokPluginVersion=8.14
7+
spotlessPluginVersion=8.1.0
8+
lombokPluginVersion=9.1.0

gradle/wrapper/gradle-wrapper.jar

1.83 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -114,7 +114,6 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

117-
CLASSPATH="\\\"\\\""
118117

119118

120119
# Determine the Java command to use to start the JVM.
@@ -172,7 +171,6 @@ fi
172171
# For Cygwin or MSYS, switch paths to Windows format before running java
173172
if "$cygwin" || "$msys" ; then
174173
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
175-
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
176174

177175
JAVACMD=$( cygpath --unix "$JAVACMD" )
178176

@@ -212,7 +210,6 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
212210

213211
set -- \
214212
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215-
-classpath "$CLASSPATH" \
216213
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217214
"$@"
218215

gradlew.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,10 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

73-
set CLASSPATH=
7473

7574

7675
@rem Execute Gradle
77-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
76+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
7877

7978
:end
8079
@rem End local scope for the variables with windows NT shell

src/main/java/app/fyreplace/api/data/Color.java

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
import org.eclipse.microprofile.openapi.annotations.media.Schema;
44

55
public record Color(
6-
@Schema(required = true, minimum = "0", maximum = "255", format = "uint8") int r,
7-
@Schema(required = true, minimum = "0", maximum = "255", format = "uint8") int g,
8-
@Schema(required = true, minimum = "0", maximum = "255", format = "uint8") int b) {}
6+
@Schema(required = true, minimum = "0", maximum = "255", format = "uint8")
7+
int r,
8+
9+
@Schema(required = true, minimum = "0", maximum = "255", format = "uint8")
10+
int g,
11+
12+
@Schema(required = true, minimum = "0", maximum = "255", format = "uint8")
13+
int b) {}

src/main/java/app/fyreplace/api/data/CommentCreation.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
public record CommentCreation(
88
@Length(min = 1, max = Comment.TEXT_MAX_LENGTH)
9-
@NotBlank
10-
@Schema(minLength = 1, maxLength = Comment.TEXT_MAX_LENGTH)
11-
String text,
9+
@NotBlank
10+
@Schema(minLength = 1, maxLength = Comment.TEXT_MAX_LENGTH)
11+
String text,
12+
1213
boolean anonymous) {}

src/main/java/app/fyreplace/api/data/EmailCreation.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
public record EmailCreation(
88
@NotBlank
9-
@Length(min = Email.EMAIL_MIN_LENGTH, max = Email.EMAIL_MAX_LENGTH)
10-
@jakarta.validation.constraints.Email
11-
@Schema(minLength = Email.EMAIL_MIN_LENGTH, maxLength = Email.EMAIL_MAX_LENGTH)
12-
String email) {}
9+
@Length(min = Email.EMAIL_MIN_LENGTH, max = Email.EMAIL_MAX_LENGTH)
10+
@jakarta.validation.constraints.Email
11+
@Schema(minLength = Email.EMAIL_MIN_LENGTH, maxLength = Email.EMAIL_MAX_LENGTH)
12+
String email) {}

src/main/java/app/fyreplace/api/data/EmailVerification.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66

77
public record EmailVerification(
88
@NotBlank
9-
@Length(min = Email.EMAIL_MIN_LENGTH, max = Email.EMAIL_MAX_LENGTH)
10-
@jakarta.validation.constraints.Email
11-
@Schema(minLength = Email.EMAIL_MIN_LENGTH, maxLength = Email.EMAIL_MAX_LENGTH)
12-
String email,
9+
@Length(min = Email.EMAIL_MIN_LENGTH, max = Email.EMAIL_MAX_LENGTH)
10+
@jakarta.validation.constraints.Email
11+
@Schema(minLength = Email.EMAIL_MIN_LENGTH, maxLength = Email.EMAIL_MAX_LENGTH)
12+
String email,
13+
1314
@NotBlank String code) {}

src/main/java/app/fyreplace/api/data/NewTokenCreation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
public record NewTokenCreation(
88
@NotBlank @Length(max = Email.EMAIL_MAX_LENGTH) @Schema(maxLength = Email.EMAIL_MAX_LENGTH)
9-
String identifier) {}
9+
String identifier) {}

0 commit comments

Comments
 (0)