Skip to content

Commit ed2c938

Browse files
committed
Update the tinystruct version to be 0.8.3.
1 parent 72f5dca commit ed2c938

File tree

6 files changed

+73
-688
lines changed

6 files changed

+73
-688
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To execute it in CLI mode
1414
$ bin/dispatcher --version
1515

1616
_/ ' _ _/ _ _ _/
17-
/ / /) (/ _) / / (/ ( / 0.5.5
17+
/ / /) (/ _) / / (/ ( / 0.8.3
1818
/
1919
```
2020
```tcsh

bin/dispatcher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env sh
22
ROOT="$(pwd)"
3-
VERSION="0.5.9"
3+
VERSION="0.8.3"
44
cd "$(dirname "$0")" || exit
55
cd "../"
66
cd "$ROOT" || exit

bin/dispatcher.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
@rem ***************************************************************************
1616
@echo off
1717
set "ROOT=%~dp0..\"
18-
set "VERSION=0.5.5"
18+
set "VERSION=0.8.3"
1919
set "classpath=%ROOT%target\classes:%ROOT%lib\*:%ROOT%WEB-INF\lib\*:%ROOT%WEB-INF\classes":%classpath%
20-
@java -cp "%ROOT%target\classes;%ROOT%lib\*;%ROOT%WEB-INF\lib\*;%ROOT%WEB-INF\classes;%USERPROFILE%\.m2\repository\org\tinystruct\tinystruct\%VERSION%\tinystruct-%VERSION%-jar-with-dependencies.jar" org.tinystruct.system.Dispatcher %*
20+
@java -cp "%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" org.tinystruct.system.Dispatcher %*

pom.xml

Lines changed: 69 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,74 @@
99
<dependency>
1010
<groupId>org.tinystruct</groupId>
1111
<artifactId>tinystruct</artifactId>
12-
<version>0.5.9</version>
12+
<version>0.8.3</version>
1313
<classifier>jar-with-dependencies</classifier>
1414
</dependency>
15-
<!-- https://mvnrepository.com/artifact/com.h2database/h2 -->
15+
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
1616
<dependency>
17-
<groupId>com.h2database</groupId>
18-
<artifactId>h2</artifactId>
19-
<version>1.4.200</version>
17+
<groupId>javax.servlet</groupId>
18+
<artifactId>javax.servlet-api</artifactId>
19+
<version>3.1.0</version>
20+
<scope>provided</scope>
2021
</dependency>
21-
22+
<!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat -->
23+
<!-- https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core -->
2224
<dependency>
2325
<groupId>org.apache.tomcat.embed</groupId>
2426
<artifactId>tomcat-embed-core</artifactId>
25-
<version>8.5.55</version>
27+
<version>8.5.78</version>
2628
</dependency>
29+
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
2730
<dependency>
28-
<groupId>org.apache.tomcat.embed</groupId>
29-
<artifactId>tomcat-embed-jasper</artifactId>
30-
<version>8.5.55</version>
31+
<groupId>org.apache.httpcomponents</groupId>
32+
<artifactId>httpclient</artifactId>
33+
<version>4.5.12</version>
34+
</dependency>
35+
<!-- https://mvnrepository.com/artifact/com.google.api.client/google-api-client-auth-oauth2 -->
36+
<dependency>
37+
<groupId>com.google.api-client</groupId>
38+
<artifactId>google-api-client</artifactId>
39+
<version>1.15.0-rc</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>com.google.http-client</groupId>
43+
<artifactId>google-http-client</artifactId>
44+
<version>1.15.0-rc</version>
45+
</dependency>
46+
47+
<dependency>
48+
<groupId>com.google.http-client</groupId>
49+
<artifactId>google-http-client-gson</artifactId>
50+
<version>1.15.0-rc</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>com.google.http-client</groupId>
54+
<artifactId>google-http-client-jackson2</artifactId>
55+
<version>1.15.0-rc</version>
56+
</dependency>
57+
58+
<dependency>
59+
<groupId>com.google.http-client</groupId>
60+
<artifactId>google-http-client-jackson</artifactId>
61+
<version>1.15.0-rc</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>com.google.oauth-client</groupId>
65+
<artifactId>google-oauth-client-java6</artifactId>
66+
<version>1.15.0-rc</version>
67+
</dependency>
68+
69+
<!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
70+
<dependency>
71+
<groupId>com.itextpdf</groupId>
72+
<artifactId>itextpdf</artifactId>
73+
<version>5.5.13.1</version>
3174
</dependency>
32-
<!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
75+
<!-- https://mvnrepository.com/artifact/javax.mail/javax.mail-api -->
3376
<dependency>
34-
<groupId>io.netty</groupId>
35-
<artifactId>netty-all</artifactId>
36-
<version>4.1.32.Final</version>
77+
<groupId>com.sun.mail</groupId>
78+
<artifactId>javax.mail</artifactId>
79+
<version>1.6.2</version>
3780
</dependency>
3881
<dependency>
3982
<groupId>com.rabbitmq</groupId>
@@ -50,40 +93,39 @@
5093
<artifactId>cdi-api</artifactId>
5194
<version>1.0</version>
5295
</dependency>
53-
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
54-
<dependency>
55-
<groupId>mysql</groupId>
56-
<artifactId>mysql-connector-java</artifactId>
57-
<version>5.1.47</version>
58-
</dependency>
59-
6096
</dependencies>
6197
<properties>
6298
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
99+
<java.version>11</java.version>
63100
<maven.compiler.source>1.8</maven.compiler.source>
64101
<maven.compiler.target>1.8</maven.compiler.target>
65102
</properties>
103+
66104
<build>
67105
<plugins>
68106
<plugin>
107+
<groupId>org.apache.maven.plugins</groupId>
108+
<artifactId>maven-compiler-plugin</artifactId>
109+
</plugin>
110+
<plugin>
111+
<groupId>org.apache.maven.plugins</groupId>
69112
<artifactId>maven-dependency-plugin</artifactId>
70113
<executions>
71114
<execution>
115+
<id>copy-dependencies</id>
72116
<phase>compile</phase>
73117
<goals>
74118
<goal>copy-dependencies</goal>
75119
</goals>
76120
<configuration>
77-
<outputDirectory>lib</outputDirectory>
121+
<outputDirectory>${project.basedir}/lib</outputDirectory>
122+
<overWriteReleases>false</overWriteReleases>
123+
<overWriteSnapshots>false</overWriteSnapshots>
124+
<overWriteIfNewer>true</overWriteIfNewer>
78125
</configuration>
79126
</execution>
80127
</executions>
81128
</plugin>
82-
<plugin>
83-
<groupId>org.apache.maven.plugins</groupId>
84-
<artifactId>maven-compiler-plugin</artifactId>
85-
</plugin>
86-
87129
<plugin>
88130
<groupId>org.apache.maven.plugins</groupId>
89131
<artifactId>maven-jar-plugin</artifactId>
@@ -98,6 +140,5 @@
98140
</configuration>
99141
</plugin>
100142
</plugins>
101-
102143
</build>
103144
</project>

src/main/java/tinystruct/examples/distributedUnlockTesting.java

Lines changed: 0 additions & 60 deletions
This file was deleted.

0 commit comments

Comments
 (0)