Skip to content

Commit

Permalink
Update the tinystruct version to be 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ver committed Jul 31, 2024
1 parent a8dc405 commit e54aa53
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/dispatcher
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env sh
ROOT="$(pwd)"
VERSION="1.2.6"
VERSION="1.3.0"
cd "$(dirname "$0")" || exit
cd "../"
# Navigate to the root directory
Expand Down
4 changes: 2 additions & 2 deletions bin/dispatcher.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ set "JAVA_CMD=%JAVA_HOME%\bin\java.exe"

@REM Consolidate classpath entries, initialize ROOT and VERSION
set "ROOT=%~dp0..\"
set "VERSION=1.2.6"
set "VERSION=1.3.0"
set "classpath=%ROOT%target\classes;%ROOT%lib\tinystruct-%VERSION%-jar-with-dependencies.jar;%ROOT%lib\*;%ROOT%WEB-INF\lib\*;%ROOT%WEB-INF\classes;%USERPROFILE%\.m2\repository\org\tinystruct\tinystruct\%VERSION%\tinystruct-%VERSION%-jar-with-dependencies.jar"

@REM Run Java application
%JAVA_CMD% -cp "%classpath%" org.tinystruct.system.Dispatcher %*
%JAVA_CMD% -cp "%classpath%" org.tinystruct.system.Dispatcher %* -Dhttps.protocols=TLSv1.2
27 changes: 26 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
<groupId>custom.application</groupId>
<artifactId>smalltalk</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
Expand All @@ -21,19 +23,42 @@
<dependency>
<groupId>org.tinystruct</groupId>
<artifactId>tinystruct</artifactId>
<version>1.2.6</version>
<version>1.3.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.groovy/groovy -->
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy</artifactId>
<version>4.0.20</version>
</dependency>

<!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports -->
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>6.20.1</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.36</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.3.4</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
Expand Down

0 comments on commit e54aa53

Please sign in to comment.