Skip to content
This repository was archived by the owner on Jul 28, 2021. It is now read-only.

Commit d2d6b09

Browse files
authored
[Patch v1.2.0]
Full changelog available on Release section (https://github.com/ShindouMihou/RoseDB/releases)
2 parents 59813b0 + e7ac097 commit d2d6b09

28 files changed

+1875
-449
lines changed

pom.xml

Lines changed: 79 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,43 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
7-
<groupId>pw.mihou</groupId>
86
<artifactId>RoseDB</artifactId>
9-
<version>1.1.0</version>
7+
<groupId>pw.mihou</groupId>
8+
<version>1.2.0</version>
9+
<name>RoseDB</name>
10+
<description>A simple NoSQL Database that is written completely in Java.</description>
11+
<url>https://github.com/ShindouMihou/RoseDB/</url>
12+
<licenses>
13+
<license>
14+
<name>Apache 2.0 License</name>
15+
<url>https://github.com/ShindouMihou/RoseDB/blob/master/LICENSE</url>
16+
<distribution>repo</distribution>
17+
</license>
18+
</licenses>
19+
<developers>
20+
<developer>
21+
<id>mihoushindou</id>
22+
<name>Shindou Mihou</name>
23+
<email>kokocrunchsh@gmail.com</email>
24+
<organization>Mana Network</organization>
25+
<organizationUrl>https://manabot.fun</organizationUrl>
26+
<roles>
27+
<role>developer</role>
28+
</roles>
29+
<timezone>+8</timezone>
30+
<properties>
31+
<picUrl>https://avatars.githubusercontent.com/u/69381903</picUrl>
32+
</properties>
33+
</developer>
34+
</developers>
35+
36+
<scm>
37+
<connection>scm:git:git://github.com/ShindouMihou/RoseDB.git</connection>
38+
<developerConnection>scm:git:git://github.com/ShindouMihou/RoseDB.git</developerConnection>
39+
<url>https://github.com/ShindouMihou/RoseDB.git</url>
40+
<tag>HEAD</tag>
41+
</scm>
42+
1043
<build>
1144
<plugins>
1245
<plugin>
@@ -26,6 +59,8 @@
2659
<descriptorRefs>
2760
<descriptorRef>jar-with-dependencies</descriptorRef>
2861
</descriptorRefs>
62+
<finalName>RoseDB</finalName>
63+
<appendAssemblyId>false</appendAssemblyId>
2964
<archive>
3065
<manifest>
3166
<mainClass>pw.mihou.rosedb.RoseDB</mainClass>
@@ -50,9 +85,19 @@
5085

5186
<dependencies>
5287
<dependency>
53-
<groupId>io.javalin</groupId>
54-
<artifactId>javalin</artifactId>
55-
<version>3.13.7</version>
88+
<groupId>org.java-websocket</groupId>
89+
<artifactId>Java-WebSocket</artifactId>
90+
<version>1.5.1</version>
91+
</dependency>
92+
<dependency>
93+
<groupId>jakarta.xml.bind</groupId>
94+
<artifactId>jakarta.xml.bind-api</artifactId>
95+
<version>3.0.1</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>org.jetbrains</groupId>
99+
<artifactId>annotations</artifactId>
100+
<version>21.0.1</version>
56101
</dependency>
57102
<dependency>
58103
<groupId>org.json</groupId>
@@ -65,10 +110,29 @@
65110
<version>2.8.0</version>
66111
</dependency>
67112
<dependency>
68-
<groupId>org.apache.maven.plugins</groupId>
69-
<artifactId>maven-assembly-plugin</artifactId>
70-
<version>3.3.0</version>
71-
<type>maven-plugin</type>
113+
<groupId>commons-codec</groupId>
114+
<artifactId>commons-codec</artifactId>
115+
<version>1.15</version>
116+
</dependency>
117+
<dependency>
118+
<groupId>com.github.vladimir-bukhtoyarov</groupId>
119+
<artifactId>bucket4j-core</artifactId>
120+
<version>6.2.0</version>
121+
</dependency>
122+
<dependency>
123+
<groupId>io.github.resilience4j</groupId>
124+
<artifactId>resilience4j-retry</artifactId>
125+
<version>1.7.0</version>
126+
</dependency>
127+
<dependency>
128+
<groupId>com.github.sbtourist</groupId>
129+
<artifactId>journalio</artifactId>
130+
<version>1.4.2</version>
131+
</dependency>
132+
<dependency>
133+
<groupId>io.github.resilience4j</groupId>
134+
<artifactId>resilience4j-timelimiter</artifactId>
135+
<version>1.7.0</version>
72136
</dependency>
73137
<dependency>
74138
<groupId>org.slf4j</groupId>
@@ -80,6 +144,11 @@
80144
<artifactId>logback-classic</artifactId>
81145
<version>1.2.3</version>
82146
</dependency>
147+
<dependency>
148+
<groupId>com.google.code.gson</groupId>
149+
<artifactId>gson</artifactId>
150+
<version>2.8.7</version>
151+
</dependency>
83152
<dependency>
84153
<groupId>com.github.ben-manes.caffeine</groupId>
85154
<artifactId>caffeine</artifactId>

0 commit comments

Comments
 (0)