|
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
5 | 5 | <modelVersion>4.0.0</modelVersion>
|
6 |
| - |
7 |
| - <groupId>pw.mihou</groupId> |
8 | 6 | <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 | + |
10 | 43 | <build>
|
11 | 44 | <plugins>
|
12 | 45 | <plugin>
|
|
26 | 59 | <descriptorRefs>
|
27 | 60 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
28 | 61 | </descriptorRefs>
|
| 62 | + <finalName>RoseDB</finalName> |
| 63 | + <appendAssemblyId>false</appendAssemblyId> |
29 | 64 | <archive>
|
30 | 65 | <manifest>
|
31 | 66 | <mainClass>pw.mihou.rosedb.RoseDB</mainClass>
|
|
50 | 85 |
|
51 | 86 | <dependencies>
|
52 | 87 | <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> |
56 | 101 | </dependency>
|
57 | 102 | <dependency>
|
58 | 103 | <groupId>org.json</groupId>
|
|
65 | 110 | <version>2.8.0</version>
|
66 | 111 | </dependency>
|
67 | 112 | <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> |
72 | 136 | </dependency>
|
73 | 137 | <dependency>
|
74 | 138 | <groupId>org.slf4j</groupId>
|
|
80 | 144 | <artifactId>logback-classic</artifactId>
|
81 | 145 | <version>1.2.3</version>
|
82 | 146 | </dependency>
|
| 147 | + <dependency> |
| 148 | + <groupId>com.google.code.gson</groupId> |
| 149 | + <artifactId>gson</artifactId> |
| 150 | + <version>2.8.7</version> |
| 151 | + </dependency> |
83 | 152 | <dependency>
|
84 | 153 | <groupId>com.github.ben-manes.caffeine</groupId>
|
85 | 154 | <artifactId>caffeine</artifactId>
|
|
0 commit comments