File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed
src/main/java/org/tinystruct/system Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Add the following dependency to your `pom.xml`:
2626<dependency >
2727 <groupId >org.tinystruct</groupId >
2828 <artifactId >tinystruct</artifactId >
29- <version >1.7.18 </version >
29+ <version >1.7.19 </version >
3030</dependency >
3131```
3232
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Installation and Getting Started Manually
3030<dependency >
3131 <groupId >org.tinystruct</groupId >
3232 <artifactId >tinystruct</artifactId >
33- <version >1.7.18 </version >
33+ <version >1.7.19 </version >
3434 <classifier >jar-with-dependencies</classifier > <!-- Optional -->
3535</dependency >
3636```
@@ -96,7 +96,7 @@ Execute in CLI mode
9696$ bin/dispatcher --version
9797
9898 _/ ' _ _/ _ _ _/
99- / / /) (/ _) / / (/ ( / 1.7.18
99+ / / /) (/ _) / / (/ ( / 1.7.19
100100 /
101101```
102102```tcsh
Original file line number Diff line number Diff line change 1717# ***************************************************************************
1818
1919ROOT=" $( pwd) "
20- VERSION=" 1.7.18 "
20+ VERSION=" 1.7.19 "
2121cd " $( dirname " $0 " ) " || exit
2222cd " ../"
2323# Navigate to the root directory
Original file line number Diff line number Diff line change 1919set " MAVEN_REPO = %USERPROFILE% \.m2\repository\org\tinystruct\tinystruct"
2020@ REM Consolidate classpath entries, initialize ROOT and VERSION
2121set " ROOT = %~dp0 .."
22- set " VERSION = 1.7.18 "
22+ set " VERSION = 1.7.19 "
2323
2424@ REM Define the paths for tinystruct jars in the Maven repository
2525set " DEFAULT_JAR_FILE = %MAVEN_REPO% \%VERSION% \tinystruct-%VERSION% .jar"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ elif [ -f "$HOME/.bash_profile" ]; then
2525fi
2626
2727# Define variables
28- TARGET_JAR=" ./target/tinystruct-1.7.18 .jar"
28+ TARGET_JAR=" ./target/tinystruct-1.7.19 .jar"
2929NATIVE_NAME=" dispatcher-native"
3030MAIN_CLASS=" org.tinystruct.system.Dispatcher"
3131CONFIG_DIR=" ./bin/.metadata"
Original file line number Diff line number Diff line change 44 <modelVersion >4.0.0</modelVersion >
55 <groupId >org.tinystruct</groupId >
66 <artifactId >tinystruct</artifactId >
7- <version >1.7.18 </version >
7+ <version >1.7.19 </version >
88 <name >tinystruct framework</name >
99 <description >A lightweight, modular Java application framework for web and CLI development,
1010 designed for AI integration and plugin-based architecture.
133133 <jna .version>5.18.1</jna .version>
134134 <jupiter .version>6.0.3</jupiter .version>
135135 <kafka .version>4.2.0</kafka .version>
136- <lettuce .version>7.4 .0.RELEASE</lettuce .version>
136+ <lettuce .version>7.5 .0.RELEASE</lettuce .version>
137137 <maven .compiler.source>17</maven .compiler.source>
138138 <maven .compiler.target>17</maven .compiler.target>
139- <sqlite .version>3.51.2 .0</sqlite .version>
139+ <sqlite .version>3.51.3 .0</sqlite .version>
140140 <h2 .version>2.4.240</h2 .version>
141- <mockito .version>5.21 .0</mockito .version>
141+ <mockito .version>5.23 .0</mockito .version>
142142 <nashorn .version>15.7</nashorn .version>
143143 <zxing .version>3.5.4</zxing .version>
144144 </properties >
Original file line number Diff line number Diff line change 2424import java .util .concurrent .ConcurrentHashMap ;
2525
2626public final class ApplicationManager {
27- public static final String VERSION = "1.7.18 " ;
27+ public static final String VERSION = "1.7.19 " ;
2828 private static final ConcurrentHashMap <String , Application > applications = new ConcurrentHashMap <>();
2929 private static final ActionRegistry ROUTE_REGISTRY_INSTANCE = ActionRegistry .getInstance ();
3030 private static Configuration <String > settings ;
You can’t perform that action at this time.
0 commit comments