|
95 | 95 | <artifactId>jackson-databind</artifactId> |
96 | 96 | <version>2.13.1</version> |
97 | 97 | </dependency> |
| 98 | + |
| 99 | + <dependency> |
| 100 | + <groupId>ch.qos.logback</groupId> |
| 101 | + <artifactId>logback-classic</artifactId> |
| 102 | + <version>${logback-classic.version}</version> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <dependency> |
| 106 | + <groupId>org.projectlombok</groupId> |
| 107 | + <artifactId>lombok</artifactId> |
| 108 | + <version>${lombok.version}</version> |
| 109 | + <scope>compile</scope> |
| 110 | + </dependency> |
| 111 | + |
| 112 | + <dependency> |
| 113 | + <groupId>info.picocli</groupId> |
| 114 | + <artifactId>picocli</artifactId> |
| 115 | + <version>${picocli.version}</version> |
| 116 | + </dependency> |
| 117 | + |
| 118 | + <dependency> |
| 119 | + <groupId>junit</groupId> |
| 120 | + <artifactId>junit</artifactId> |
| 121 | + <version>4.13.2</version> |
| 122 | + <scope>test</scope> |
| 123 | + </dependency> |
| 124 | + <dependency> |
| 125 | + <groupId>org.junit.jupiter</groupId> |
| 126 | + <artifactId>junit-jupiter-api</artifactId> |
| 127 | + <version>${junit.version}</version> |
| 128 | + <scope>test</scope> |
| 129 | + </dependency> |
| 130 | + <dependency> |
| 131 | + <groupId>org.junit.jupiter</groupId> |
| 132 | + <artifactId>junit-jupiter-engine</artifactId> |
| 133 | + <version>${junit.version}</version> |
| 134 | + <scope>test</scope> |
| 135 | + </dependency> |
| 136 | + <dependency> |
| 137 | + <groupId>org.junit.vintage</groupId> |
| 138 | + <artifactId>junit-vintage-engine</artifactId> |
| 139 | + <version>${junit.version}</version> |
| 140 | + <scope>test</scope> |
| 141 | + </dependency> |
| 142 | + |
| 143 | + <!-- Dependencies for JWT --> |
| 144 | + <dependency> |
| 145 | + <groupId>io.jsonwebtoken</groupId> |
| 146 | + <artifactId>jjwt-api</artifactId> |
| 147 | + <version>0.11.2</version> |
| 148 | + </dependency> |
| 149 | + <dependency> |
| 150 | + <groupId>io.jsonwebtoken</groupId> |
| 151 | + <artifactId>jjwt-impl</artifactId> |
| 152 | + <version>0.11.2</version> |
| 153 | + <scope>runtime</scope> |
| 154 | + </dependency> |
| 155 | + <dependency> |
| 156 | + <groupId>io.jsonwebtoken</groupId> |
| 157 | + <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred --> |
| 158 | + <version>0.11.2</version> |
| 159 | + <scope>runtime</scope> |
| 160 | + </dependency> |
| 161 | + |
| 162 | + <dependency> |
| 163 | + <groupId>org.json</groupId> |
| 164 | + <artifactId>json</artifactId> |
| 165 | + <version>20211205</version> |
| 166 | + </dependency> |
| 167 | + |
| 168 | + <dependency> |
| 169 | + <groupId>org.javatuples</groupId> |
| 170 | + <artifactId>javatuples</artifactId> |
| 171 | + <version>1.2</version> |
| 172 | + </dependency> |
| 173 | + |
98 | 174 | </dependencies> |
99 | 175 | </dependencyManagement> |
100 | 176 |
|
101 | 177 | <dependencies> |
102 | 178 | <dependency> |
103 | 179 | <groupId>ch.qos.logback</groupId> |
104 | 180 | <artifactId>logback-classic</artifactId> |
105 | | - <version>${logback-classic.version}</version> |
106 | 181 | </dependency> |
107 | 182 |
|
108 | 183 | <dependency> |
109 | 184 | <groupId>org.projectlombok</groupId> |
110 | 185 | <artifactId>lombok</artifactId> |
111 | | - <version>${lombok.version}</version> |
112 | 186 | <scope>compile</scope> |
113 | 187 | </dependency> |
114 | 188 |
|
115 | 189 | <dependency> |
116 | 190 | <groupId>info.picocli</groupId> |
117 | 191 | <artifactId>picocli</artifactId> |
118 | | - <version>${picocli.version}</version> |
119 | 192 | </dependency> |
120 | 193 |
|
121 | 194 | <dependency> |
122 | 195 | <groupId>junit</groupId> |
123 | 196 | <artifactId>junit</artifactId> |
124 | | - <version>4.13.2</version> |
125 | 197 | <scope>test</scope> |
126 | 198 | </dependency> |
127 | 199 | <dependency> |
128 | 200 | <groupId>org.junit.jupiter</groupId> |
129 | 201 | <artifactId>junit-jupiter-api</artifactId> |
130 | | - <version>${junit.version}</version> |
131 | 202 | <scope>test</scope> |
132 | 203 | </dependency> |
133 | 204 | <dependency> |
134 | 205 | <groupId>org.junit.jupiter</groupId> |
135 | 206 | <artifactId>junit-jupiter-engine</artifactId> |
136 | | - <version>${junit.version}</version> |
137 | 207 | <scope>test</scope> |
138 | 208 | </dependency> |
139 | 209 | <dependency> |
140 | 210 | <groupId>org.junit.vintage</groupId> |
141 | 211 | <artifactId>junit-vintage-engine</artifactId> |
142 | | - <version>${junit.version}</version> |
143 | 212 | <scope>test</scope> |
144 | 213 | </dependency> |
145 | 214 |
|
146 | 215 | <!-- Dependencies for JWT --> |
147 | 216 | <dependency> |
148 | 217 | <groupId>io.jsonwebtoken</groupId> |
149 | 218 | <artifactId>jjwt-api</artifactId> |
150 | | - <version>0.11.2</version> |
151 | 219 | </dependency> |
152 | 220 | <dependency> |
153 | 221 | <groupId>io.jsonwebtoken</groupId> |
154 | 222 | <artifactId>jjwt-impl</artifactId> |
155 | | - <version>0.11.2</version> |
156 | 223 | <scope>runtime</scope> |
157 | 224 | </dependency> |
158 | 225 | <dependency> |
159 | 226 | <groupId>io.jsonwebtoken</groupId> |
160 | 227 | <artifactId>jjwt-jackson</artifactId> <!-- or jjwt-gson if Gson is preferred --> |
161 | | - <version>0.11.2</version> |
162 | 228 | <scope>runtime</scope> |
163 | 229 | </dependency> |
164 | 230 |
|
|
176 | 242 | <dependency> |
177 | 243 | <groupId>org.json</groupId> |
178 | 244 | <artifactId>json</artifactId> |
179 | | - <version>20211205</version> |
180 | 245 | </dependency> |
181 | 246 |
|
182 | 247 | <dependency> |
183 | 248 | <groupId>org.javatuples</groupId> |
184 | 249 | <artifactId>javatuples</artifactId> |
185 | | - <version>1.2</version> |
186 | 250 | </dependency> |
187 | 251 |
|
188 | 252 | </dependencies> |
|
0 commit comments