File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
src/main/java/org/tinystruct/system Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Installation and Getting Started
21
21
<dependency >
22
22
<groupId >org.tinystruct</groupId >
23
23
<artifactId >tinystruct</artifactId >
24
- <version >1.7.3 </version >
24
+ <version >1.7.4 </version >
25
25
<classifier >jar-with-dependencies</classifier > <!-- Optional -->
26
26
</dependency >
27
27
```
@@ -77,7 +77,7 @@ Execute in CLI mode
77
77
$ bin/dispatcher --version
78
78
79
79
_/ ' _ _/ _ _ _/
80
- / / /) (/ _) / / (/ ( / 1.7.3
80
+ / / /) (/ _) / / (/ ( / 1.7.4
81
81
/
82
82
```
83
83
```tcsh
Original file line number Diff line number Diff line change 17
17
# ***************************************************************************
18
18
19
19
ROOT=" $( pwd) "
20
- VERSION=" 1.7.3 "
20
+ VERSION=" 1.7.4 "
21
21
cd " $( dirname " $0 " ) " || exit
22
22
cd " ../"
23
23
# Navigate to the root directory
Original file line number Diff line number Diff line change 19
19
set " MAVEN_REPO = %USERPROFILE% \.m2\repository\org\tinystruct\tinystruct"
20
20
@ REM Consolidate classpath entries, initialize ROOT and VERSION
21
21
set " ROOT = %~dp0 .."
22
- set " VERSION = 1.7.3 "
22
+ set " VERSION = 1.7.4 "
23
23
24
24
@ REM Define the paths for tinystruct jars in the Maven repository
25
25
set " DEFAULT_JAR_FILE = %MAVEN_REPO% \%VERSION% \tinystruct-%VERSION% .jar"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ $GRAALVM_HOME/bin/native-image -H:ConfigurationFileDirectories=/Volumes/Untitled
10
10
--initialize-at-run-time=io.netty.util.AbstractReferenceCounted \
11
11
--trace-class-initialization=org.slf4j.LoggerFactory \
12
12
--add-opens=java.base/jdk.internal.misc=ALL-UNNAMED \
13
- -cp ./target/tinystruct-1.7.3 .jar \
13
+ -cp ./target/tinystruct-1.7.4 .jar \
14
14
-H:Name=dispatcher-native \
15
15
-H:Class=org.tinystruct.system.Dispatcher \
16
16
-H:+ReportExceptionStackTraces \
Original file line number Diff line number Diff line change 4
4
<modelVersion >4.0.0</modelVersion >
5
5
<groupId >org.tinystruct</groupId >
6
6
<artifactId >tinystruct</artifactId >
7
- <version >1.7.3 </version >
7
+ <version >1.7.4 </version >
8
8
<name >tinystruct framework</name >
9
9
<description >A lightweight, modular Java application framework for web and CLI development,
10
10
designed for AI integration and plugin-based architecture.
Original file line number Diff line number Diff line change 23
23
import java .util .concurrent .ConcurrentHashMap ;
24
24
25
25
public final class ApplicationManager {
26
- public static final String VERSION = "1.7.3 " ;
26
+ public static final String VERSION = "1.7.4 " ;
27
27
private static final ConcurrentHashMap <String , Application > applications = new ConcurrentHashMap <>();
28
28
private static final ActionRegistry ROUTE_REGISTRY_INSTANCE = ActionRegistry .getInstance ();
29
29
private static Configuration <String > settings ;
You can’t perform that action at this time.
0 commit comments