Skip to content

Commit 0f2b571

Browse files
committed
downgrade to java, javafx 21 cause 25 breaks the app
1 parent e5ed4f1 commit 0f2b571

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

pom.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<maven.compiler.source>21</maven.compiler.source>
1212
<maven.compiler.target>21</maven.compiler.target>
1313
<attach.version>4.0.10</attach.version>
14-
<javafx.version>21.0.2</javafx.version>
14+
<javafx.version>21.0.8</javafx.version>
1515
<log4j.version>2.22.1</log4j.version>
1616
</properties>
1717

@@ -69,31 +69,31 @@
6969
</plugins>
7070
</build>
7171

72-
<dependencies>
72+
<dependencies>
7373
<!--
7474
https://mvnrepository.com/artifact/com.github.vertical-blank/sql-formatter -->
7575
<dependency>
7676
<groupId>com.github.vertical-blank</groupId>
7777
<artifactId>sql-formatter</artifactId>
78-
<version>2.0.4</version>
78+
<version>2.0.5</version>
7979
</dependency>
8080
<!-- https://mvnrepository.com/artifact/org.fxmisc.richtext/richtextfx -->
8181
<dependency>
8282
<groupId>org.fxmisc.richtext</groupId>
8383
<artifactId>richtextfx</artifactId>
8484
<!-- 0.10.9 works better than 0.11.2 -->
85-
<version>0.10.9</version>
85+
<version>0.11.6</version>
8686
</dependency>
8787
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
8888
<dependency>
8989
<groupId>org.slf4j</groupId>
9090
<artifactId>slf4j-api</artifactId>
91-
<version>1.7.36</version>
91+
<version>2.0.17</version>
9292
</dependency>
9393
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
9494
<dependency>
9595
<groupId>org.apache.logging.log4j</groupId>
96-
<artifactId>log4j-slf4j-impl</artifactId>
96+
<artifactId>log4j-slf4j2-impl</artifactId>
9797
<version>${log4j.version}</version>
9898
</dependency>
9999
<!--
@@ -114,19 +114,19 @@
114114
<dependency>
115115
<groupId>io.javalin</groupId>
116116
<artifactId>javalin</artifactId>
117-
<version>5.6.3</version>
117+
<version>6.7.0</version>
118118
</dependency>
119119
<!-- https://mvnrepository.com/artifact/org.json/json -->
120120
<dependency>
121121
<groupId>org.json</groupId>
122122
<artifactId>json</artifactId>
123-
<version>20240205</version>
123+
<version>20250517</version>
124124
</dependency>
125125
<!-- https://mvnrepository.com/artifact/org.controlsfx/controlsfx -->
126126
<dependency>
127127
<groupId>org.controlsfx</groupId>
128128
<artifactId>controlsfx</artifactId>
129-
<version>11.2.0</version>
129+
<version>11.2.2</version>
130130
</dependency>
131131
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-web -->
132132
<dependency>
@@ -149,44 +149,44 @@
149149
<dependency>
150150
<groupId>org.xerial</groupId>
151151
<artifactId>sqlite-jdbc</artifactId>
152-
<version>3.45.1.0</version>
152+
<version>3.50.3.0</version>
153153
</dependency>
154154
<!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
155155
<dependency>
156156
<groupId>com.mysql</groupId>
157157
<artifactId>mysql-connector-j</artifactId>
158-
<version>8.3.0</version>
158+
<version>9.4.0</version>
159159
</dependency>
160160
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
161161
<dependency>
162162
<groupId>org.postgresql</groupId>
163163
<artifactId>postgresql</artifactId>
164-
<version>42.7.1</version>
164+
<version>42.7.8</version>
165165
</dependency>
166166
<!--
167167
https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
168168
<dependency>
169169
<groupId>com.microsoft.sqlserver</groupId>
170170
<artifactId>mssql-jdbc</artifactId>
171-
<version>12.6.0.jre11</version>
171+
<version>13.2.0.jre11</version>
172172
</dependency>
173173
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
174174
<dependency>
175175
<groupId>org.apache.commons</groupId>
176176
<artifactId>commons-dbcp2</artifactId>
177-
<version>2.11.0</version>
177+
<version>2.13.0</version>
178178
</dependency>
179179
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
180180
<dependency>
181181
<groupId>org.apache.commons</groupId>
182182
<artifactId>commons-lang3</artifactId>
183-
<version>3.14.0</version>
183+
<version>3.18.0</version>
184184
</dependency>
185185
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
186186
<dependency>
187187
<groupId>commons-io</groupId>
188188
<artifactId>commons-io</artifactId>
189-
<version>2.15.1</version>
189+
<version>2.20.0</version>
190190
</dependency>
191191
</dependencies>
192192

0 commit comments

Comments
 (0)