File tree Expand file tree Collapse file tree 7 files changed +11
-9
lines changed
java/org/tinystruct/system Expand file tree Collapse file tree 7 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Installation and Getting Started
15
15
<dependency >
16
16
<groupId >org.tinystruct</groupId >
17
17
<artifactId >tinystruct</artifactId >
18
- <version >1.6.7 </version >
18
+ <version >1.6.8 </version >
19
19
<classifier >jar-with-dependencies</classifier >
20
20
</dependency >
21
21
```
@@ -71,7 +71,7 @@ Execute in CLI mode
71
71
$ bin/dispatcher --version
72
72
73
73
_/ ' _ _/ _ _ _/
74
- / / /) (/ _) / / (/ ( / 1.6.7
74
+ / / /) (/ _) / / (/ ( / 1.6.8
75
75
/
76
76
```
77
77
```tcsh
Original file line number Diff line number Diff line change 17
17
# ***************************************************************************
18
18
19
19
ROOT=" $( pwd) "
20
- VERSION=" 1.6.7 "
20
+ VERSION=" 1.6.8 "
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.6.7 "
22
+ set " VERSION = 1.6.8 "
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.6.7 .jar \
13
+ -cp ./target/tinystruct-1.6.8 .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.6.7 </version >
7
+ <version >1.6.8 </version >
8
8
<name >tinystruct framework</name >
9
9
<description >A lightweight java framework designed for building efficient and scalable applications. Supports both
10
10
command-line tools and APIs, enabling developers to create robust solutions with ease.
99
99
<dependency >
100
100
<groupId >io.netty</groupId >
101
101
<artifactId >netty-tcnative</artifactId >
102
- <version >2.0.71 .Final</version >
102
+ <version >2.0.72 .Final</version >
103
103
<classifier >linux-x86_64</classifier >
104
104
<optional >true</optional >
105
105
</dependency >
232
232
<sqlite .version>3.49.1.0</sqlite .version>
233
233
<h2 .version>2.3.232</h2 .version>
234
234
<netty .version>4.2.1.Final</netty .version>
235
- <mockito .version>5.17 .0</mockito .version>
235
+ <mockito .version>5.18 .0</mockito .version>
236
236
<nashorn .version>15.6</nashorn .version>
237
237
<tomcat .embed.version>10.1.40</tomcat .embed.version>
238
238
<zxing .version>3.5.3</zxing .version>
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.6.7 " ;
26
+ public static final String VERSION = "1.6.8 " ;
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 ;
Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ smtp.auth.pwd=
37
37
38
38
# logging.properties
39
39
logging.override = !TRUE
40
+ logging.level =ERROR
41
+ logging.enabled =FALSE
40
42
handlers = java.util.logging.ConsoleHandler
41
43
42
44
# ###########################################################
You can’t perform that action at this time.
0 commit comments