Skip to content

Commit 8dcdd2e

Browse files
committed
Configuration changes
1 parent 5082bcd commit 8dcdd2e

File tree

6 files changed

+23
-17
lines changed

6 files changed

+23
-17
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY application-*.jar $APP_HOME/application.jar
77
COPY prodkeys/*-key-autocart.rsa $APP_HOME/
88
COPY hotel-names.json $APP_HOME/
99

10-
RUN apk --no-cache -s upgrade && apk --no-cache upgrade
10+
RUN apk --no-cache -s upgrade && apk --no-cache upgrade && apk add musl-locales && apk add lang
1111

1212
WORKDIR $APP_HOME
1313

application/pom.xml

+11-11
Original file line numberDiff line numberDiff line change
@@ -75,42 +75,42 @@
7575
<dependency>
7676
<groupId>com.github.ben-manes.caffeine</groupId>
7777
<artifactId>caffeine</artifactId>
78-
<version>3.1.8</version>
78+
<version>${com.github.ben-manes.caffeine.version}</version>
7979
</dependency>
8080
<dependency>
8181
<groupId>org.zalando</groupId>
8282
<artifactId>logbook-spring-boot-starter</artifactId>
83-
<version>3.9.0</version>
83+
<version>${org.zalando.version}</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>org.zalando</groupId>
8787
<artifactId>logbook-httpclient5</artifactId>
88-
<version>3.9.0</version>
88+
<version>${org.zalando.version}</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>org.springdoc</groupId>
9292
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
93-
<version>2.5.0</version>
93+
<version>${org.springdoc.version}</version>
9494
</dependency>
95-
<dependency>
95+
<!--dependency>
9696
<groupId>com.j256.two-factor-auth</groupId>
9797
<artifactId>two-factor-auth</artifactId>
9898
<version>1.3</version>
99-
</dependency>
100-
<dependency>
99+
</dependency-->
100+
<!--dependency>
101101
<groupId>com.google.zxing</groupId>
102102
<artifactId>javase</artifactId>
103103
<version>3.5.2</version>
104-
</dependency>
104+
</dependency-->
105105
<dependency>
106106
<groupId>org.bouncycastle</groupId>
107107
<artifactId>bcprov-jdk18on</artifactId>
108-
<version>1.79</version>
108+
<version>${org.bouncycastle.version}</version>
109109
</dependency>
110110
<dependency>
111111
<groupId>org.bouncycastle</groupId>
112112
<artifactId>bcpkix-jdk18on</artifactId>
113-
<version>1.79</version>
113+
<version>${org.bouncycastle.version}</version>
114114
</dependency>
115115
<dependency>
116116
<groupId>gg.jte</groupId>
@@ -125,7 +125,7 @@
125125
<dependency>
126126
<groupId>com.sksamuel.scrimage</groupId>
127127
<artifactId>scrimage-webp</artifactId>
128-
<version>4.3.0</version>
128+
<version>${com.sksamuel.scrimage.version}</version>
129129
</dependency>
130130

131131
</dependencies>

application/src/main/resources/application.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,5 +146,5 @@ badge:
146146
reminders:
147147
cronjobs:
148148
order-linking: ${REMINDERS_CRONJOB_ORDER_LINKING:0 40 18 * * *}
149-
user-badge-upload: ${REMINDERS_CRONJOB_ORDER_LINKING:0 0 18 1 * *}
150-
fursuit-badge-upload: ${REMINDERS_CRONJOB_ORDER_LINKING:0 0 18 2 * *}
149+
user-badge-upload: ${REMINDERS_CRONJOB_USER_BADGE_UPLOAD:0 0 18 1 * *}
150+
fursuit-badge-upload: ${REMINDERS_CRONJOB_FURSUIT_BADGE_UPLOAD:0 0 18 2 * *}

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e #crashes the script on errors
33

44
echo "pulling from git"
5-
#git pull origin master
5+
git pull origin master
66
echo "stopping service"
77
service fz-backend stop
88
echo "building docker"

jooq-common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>org.jetbrains</groupId>
4242
<artifactId>annotations</artifactId>
43-
<version>26.0.1</version>
43+
<version>${org.jetbrains.version}</version>
4444
</dependency>
4545
</dependencies>
4646
<build>

pom.xml

+7-1
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,20 @@
3131
<java.version>23</java.version>
3232
<lombok.version>1.18.34</lombok.version>
3333
<checkstyle.version>10.18.2</checkstyle.version>
34-
<spring.boot.version>3.3.4</spring.boot.version>
34+
<spring.boot.version>3.4.2</spring.boot.version>
3535
<postgresql.version>42.7.4</postgresql.version>
3636
<jooq.version>3.19.13</jooq.version>
3737
<commons.lang.version>3.17.0</commons.lang.version>
3838
<guava.version>33.3.1-jre</guava.version>
3939
<uuid.creator.version>6.0.0</uuid.creator.version>
4040
<paseto4j.version>2024.3</paseto4j.version>
4141
<jte.version>3.1.15</jte.version>
42+
<com.sksamuel.scrimage.version>4.3.0</com.sksamuel.scrimage.version>
43+
<org.bouncycastle.version>1.79</org.bouncycastle.version>
44+
<org.jetbrains.version>26.0.1</org.jetbrains.version>
45+
<com.github.ben-manes.caffeine.version>3.1.8</com.github.ben-manes.caffeine.version>
46+
<org.zalando.version>3.9.0</org.zalando.version>
47+
<org.springdoc.version>2.5.0</org.springdoc.version>
4248
</properties>
4349
<dependencies>
4450
<dependency>

0 commit comments

Comments
 (0)