Skip to content

Commit e7ceba9

Browse files
committed
2025.12.0
1 parent abafdef commit e7ceba9

2 files changed

Lines changed: 25 additions & 28 deletions

File tree

.settings/org.eclipse.jdt.core.prefs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
55
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
66
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
77
org.eclipse.jdt.core.compiler.processAnnotations=disabled
8-
org.eclipse.jdt.core.compiler.release=disabled
8+
org.eclipse.jdt.core.compiler.release=enabled
99
org.eclipse.jdt.core.compiler.source=21

pom.xml

Lines changed: 24 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.nasdanika</groupId>
6-
<version>2025.10.0</version>
6+
<version>2025.12.0</version>
77
<artifactId>cli-launcher</artifactId>
88
<packaging>jar</packaging>
99
<name>Nasdanika CLI launcher</name>
@@ -24,6 +24,13 @@
2424
<url>https://github.com/Nasdanika/cli</url>
2525

2626
<dependencies>
27+
28+
<!-- Forcing Netty version -->
29+
<dependency>
30+
<groupId>io.projectreactor.netty</groupId>
31+
<artifactId>reactor-netty-http</artifactId>
32+
<version>1.3.1</version>
33+
</dependency>
2734

2835
<!-- Forcing SLF4j version -->
2936
<dependency>
@@ -40,39 +47,39 @@
4047
<dependency>
4148
<groupId>org.nasdanika.models.app</groupId>
4249
<artifactId>cli</artifactId>
43-
<version>2025.10.0</version>
50+
<version>2025.12.0</version>
4451
</dependency>
4552
<dependency>
4653
<groupId>org.nasdanika.models.java</groupId>
4754
<artifactId>cli</artifactId>
48-
<version>2025.10.0</version>
55+
<version>2025.12.0</version>
4956
</dependency>
5057
<!--
5158
<dependency>
5259
<groupId>org.nasdanika.models.rules</groupId>
5360
<artifactId>cli</artifactId>
54-
<version>2025.7.0</version>
61+
<version>2025.12.0</version>
5562
</dependency>
5663
-->
5764
<dependency>
5865
<groupId>org.nasdanika.models.crew-ai</groupId>
5966
<artifactId>cli</artifactId>
60-
<version>2025.10.0</version>
67+
<version>2025.12.0</version>
6168
</dependency>
6269
<dependency>
6370
<groupId>org.nasdanika.models.sql</groupId>
6471
<artifactId>cli</artifactId>
65-
<version>2025.10.0</version>
72+
<version>2025.12.0</version>
6673
</dependency>
6774
<dependency>
6875
<groupId>org.nasdanika.models.architecture</groupId>
6976
<artifactId>model</artifactId>
70-
<version>2025.10.0</version>
77+
<version>2025.12.0</version>
7178
</dependency>
7279
<dependency>
7380
<groupId>org.nasdanika.core</groupId>
7481
<artifactId>http</artifactId>
75-
<version>2025.10.0</version>
82+
<version>2025.12.0</version>
7683
</dependency>
7784
<!--
7885
<dependency>
@@ -84,28 +91,28 @@
8491
<dependency>
8592
<groupId>org.nasdanika.core</groupId>
8693
<artifactId>maven</artifactId>
87-
<version>2025.10.0</version>
94+
<version>2025.12.0</version>
8895
</dependency>
8996
<dependency>
9097
<groupId>org.nasdanika.models.echarts</groupId>
9198
<artifactId>graph</artifactId>
92-
<version>2025.10.0</version>
99+
<version>2025.12.0</version>
93100
</dependency>
94101
<dependency>
95102
<groupId>org.nasdanika.models.ecore</groupId>
96103
<artifactId>cli</artifactId>
97-
<version>2025.10.0</version>
104+
<version>2025.12.0</version>
98105
</dependency>
99106
<dependency>
100107
<groupId>org.junit.jupiter</groupId>
101108
<artifactId>junit-jupiter-api</artifactId>
102-
<version>6.0.0</version>
109+
<version>6.0.1</version>
103110
<scope>test</scope>
104111
</dependency>
105112
<dependency>
106113
<groupId>org.junit.jupiter</groupId>
107114
<artifactId>junit-jupiter-engine</artifactId>
108-
<version>6.0.0</version>
115+
<version>6.0.1</version>
109116
<scope>test</scope>
110117
</dependency>
111118
</dependencies>
@@ -177,7 +184,7 @@
177184
</plugin>
178185
<plugin>
179186
<artifactId>maven-assembly-plugin</artifactId>
180-
<version>3.7.1</version>
187+
<version>3.8.0</version>
181188
<configuration>
182189
<outputDirectory>${project.build.directory}</outputDirectory>
183190
<formats>zip</formats>
@@ -201,16 +208,15 @@
201208
<plugin>
202209
<groupId>org.apache.maven.plugins</groupId>
203210
<artifactId>maven-compiler-plugin</artifactId>
204-
<version>3.14.0</version>
211+
<version>3.14.1</version>
205212
<configuration>
206-
<source>21</source>
207-
<target>21</target>
213+
<release>21</release>
208214
</configuration>
209215
</plugin>
210216
<plugin>
211217
<groupId>org.apache.maven.plugins</groupId>
212218
<artifactId>maven-source-plugin</artifactId>
213-
<version>3.3.1</version>
219+
<version>3.4.0</version>
214220
<executions>
215221
<execution>
216222
<id>attach-sources</id>
@@ -303,13 +309,4 @@
303309
</build>
304310
</profile>
305311
</profiles>
306-
307-
<!-- For picocli 4.7.7-SNAPSHOT -->
308-
<repositories>
309-
<repository>
310-
<id>nasdanika-snapshots</id>
311-
<url>https://maven.nasdanika.org/snapshots</url>
312-
</repository>
313-
</repositories>
314-
315312
</project>

0 commit comments

Comments
 (0)