|
8 | 8 |
|
9 | 9 | <parent> |
10 | 10 | <groupId>com.baeldung</groupId> |
11 | | - <artifactId>parent-boot-2</artifactId> |
12 | | - <version>0.0.1-SNAPSHOT</version> |
13 | | - <relativePath>../parent-boot-2</relativePath> |
| 11 | + <artifactId>parent-modules</artifactId> |
| 12 | + <version>1.0.0-SNAPSHOT</version> |
14 | 13 | </parent> |
15 | 14 |
|
16 | 15 | <dependencies> |
|
24 | 23 | <artifactId>lombok</artifactId> |
25 | 24 | <version>${lombok.version}</version> |
26 | 25 | </dependency> |
27 | | - <dependency> |
28 | | - <groupId>org.springframework.boot</groupId> |
29 | | - <artifactId>spring-boot-starter-web</artifactId> |
30 | | - </dependency> |
31 | | - |
32 | | - <dependency> |
33 | | - <groupId>net.sourceforge.barbecue</groupId> |
34 | | - <artifactId>barbecue</artifactId> |
35 | | - <version>${barbecue.version}</version> |
36 | | - </dependency> |
37 | | - |
38 | | - <dependency> |
39 | | - <groupId>net.sf.barcode4j</groupId> |
40 | | - <artifactId>barcode4j</artifactId> |
41 | | - <version>${barcode4j.version}</version> |
42 | | - </dependency> |
43 | | - |
44 | | - <dependency> |
45 | | - <groupId>com.google.zxing</groupId> |
46 | | - <artifactId>core</artifactId> |
47 | | - <version>${zxing.version}</version> |
48 | | - </dependency> |
49 | | - <dependency> |
50 | | - <groupId>com.google.zxing</groupId> |
51 | | - <artifactId>javase</artifactId> |
52 | | - <version>${zxing.version}</version> |
53 | | - </dependency> |
54 | | - |
55 | | - <dependency> |
56 | | - <groupId>com.github.kenglxn.qrgen</groupId> |
57 | | - <artifactId>javase</artifactId> |
58 | | - <version>${qrgen.version}</version> |
59 | | - </dependency> |
60 | 26 | <dependency> |
61 | 27 | <groupId>com.github.rvesse</groupId> |
62 | 28 | <artifactId>airline</artifactId> |
|
89 | 55 | <artifactId>takes</artifactId> |
90 | 56 | <version>${takes.version}</version> |
91 | 57 | </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.apache.httpcomponents</groupId> |
| 60 | + <artifactId>httpcore</artifactId> |
| 61 | + <version>${httpcore.version}</version> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.apache.httpcomponents</groupId> |
| 65 | + <artifactId>httpclient</artifactId> |
| 66 | + <version>${httpclient.version}</version> |
| 67 | + </dependency> |
92 | 68 | <dependency> |
93 | 69 | <groupId>org.apache.velocity</groupId> |
94 | 70 | <artifactId>velocity-engine-core</artifactId> |
|
119 | 95 | <url>https://jitpack.io</url> |
120 | 96 | </repository> |
121 | 97 | </repositories> |
122 | | - |
| 98 | + |
123 | 99 | <build> |
124 | 100 | <finalName>libraries-3</finalName> |
125 | 101 | <plugins> |
|
239 | 215 | <properties> |
240 | 216 | <jcommander.version>1.78</jcommander.version> |
241 | 217 | <lombok.version>1.18.6</lombok.version> |
242 | | - <barbecue.version>1.5-beta1</barbecue.version> |
243 | | - <barcode4j.version>2.1</barcode4j.version> |
244 | | - <zxing.version>3.3.0</zxing.version> |
245 | | - <qrgen.version>2.6.0</qrgen.version> |
246 | 218 |
|
247 | 219 | <cactoos.version>0.43</cactoos.version> |
248 | 220 | <airline.version>2.7.2</airline.version> |
|
254 | 226 | <aspectjweaver.version>1.9.2</aspectjweaver.version> |
255 | 227 |
|
256 | 228 | <takes.version>1.19</takes.version> |
| 229 | + <httpcore.version>4.4.13</httpcore.version> |
| 230 | + <httpclient.version>4.5.12</httpclient.version> |
257 | 231 | <velocity-engine-core.version>2.2</velocity-engine-core.version> |
258 | 232 | <exec-maven-plugin.version>1.6.0</exec-maven-plugin.version> |
259 | 233 | </properties> |
|
0 commit comments