diff options
| author | 2025-08-08 07:34:06 +0300 | |
|---|---|---|
| committer | 2025-08-08 07:34:06 +0300 | |
| commit | 0b5382277902af07b1c9c1c64a84f20e649e1833 (patch) | |
| tree | 88460a4fb69794b67f9453a79189ae80071a99ee | |
| parent | Remove maven-core & maven-plugin-api (diff) | |
| download | lv.enes:parent-0b5382277902af07b1c9c1c64a84f20e649e1833.tar.gz lv.enes:parent-0b5382277902af07b1c9c1c64a84f20e649e1833.tar.xz lv.enes:parent-0b5382277902af07b1c9c1c64a84f20e649e1833.zip | |
Add slf4j-api, lombok, junit as default dependencies
| -rw-r--r-- | pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
| @@ -181,10 +181,31 @@ | |||
| 181 | 181 | ||
| 182 | <dependencies> | 182 | <dependencies> |
| 183 | <dependency> | 183 | <dependency> |
| 184 | <groupId>org.slf4j</groupId> | ||
| 185 | <artifactId>slf4j-api</artifactId> | ||
| 186 | </dependency> | ||
| 187 | |||
| 188 | <dependency> | ||
| 184 | <groupId>org.checkerframework</groupId> | 189 | <groupId>org.checkerframework</groupId> |
| 185 | <artifactId>checker-qual</artifactId> | 190 | <artifactId>checker-qual</artifactId> |
| 186 | <scope>provided</scope> | 191 | <scope>provided</scope> |
| 187 | </dependency> | 192 | </dependency> |
| 193 | <dependency> | ||
| 194 | <groupId>org.projectlombok</groupId> | ||
| 195 | <artifactId>lombok</artifactId> | ||
| 196 | <scope>provided</scope> | ||
| 197 | </dependency> | ||
| 198 | |||
| 199 | <dependency> | ||
| 200 | <groupId>org.junit.jupiter</groupId> | ||
| 201 | <artifactId>junit-jupiter</artifactId> | ||
| 202 | <scope>test</scope> | ||
| 203 | </dependency> | ||
| 204 | <dependency> | ||
| 205 | <groupId>org.junit.jupiter</groupId> | ||
| 206 | <artifactId>junit-jupiter-engine</artifactId> | ||
| 207 | <scope>test</scope> | ||
| 208 | </dependency> | ||
| 188 | </dependencies> | 209 | </dependencies> |
| 189 | 210 | ||
| 190 | <build> | 211 | <build> |