|
1 | 1 | // {{start:dependencies}}
|
2 | 2 | ext {
|
3 | 3 | versions = [
|
4 |
| - jackson : '2.9.7', // Json Serializer / Deserializer |
5 |
| - okhttp : '3.11.0', // HTTP Client |
6 |
| - slf4j : '1.7.25', // Logging |
| 4 | + jackson : '2.10.1', // Json Serializer / Deserializer |
| 5 | + okhttp : '4.2.2', // HTTP Client |
| 6 | + slf4j : '1.7.29', // Logging |
7 | 7 | logback : '1.2.3', // Logging
|
8 |
| - undertow : '2.0.13.Final',// Webserver |
| 8 | + undertow : '2.0.28.Final',// Webserver |
9 | 9 | metrics : '4.0.3', // Metrics
|
10 |
| - guava : '26.0-jre', // Common / Helper libraries |
11 |
| - typesafeConfig : '1.3.3', // Configuration |
12 |
| - handlebars : '4.1.0', // HTML templating |
| 10 | + guava : '28.1-jre', // Common / Helper libraries |
| 11 | + typesafeConfig : '1.4.0', // Configuration |
| 12 | + handlebars : '4.1.2', // HTML templating |
13 | 13 | htmlCompressor : '1.5.2', // HTML compression
|
14 |
| - hikaricp : '3.2.0', // JDBC connection pool |
| 14 | + hikaricp : '3.4.1', // JDBC connection pool |
15 | 15 | jool : '0.9.12', // Functional Utils
|
16 | 16 | hsqldb : '2.3.4', // In memory SQL db
|
17 | 17 | aws : '1.11.419', // AWS Java SDK
|
|
25 | 25 | sitemapgen4j : '1.0.6', // Sitemap generator for SEO
|
26 | 26 | jbcrypt : '0.4', // BCrypt salted hashing library
|
27 | 27 | romeRss : '1.0', // RSS Library
|
28 |
| - |
| 28 | + kotlin : '1.3.60', // Kotlin |
| 29 | + |
29 | 30 | junit : '4.12', // Unit Testing
|
30 | 31 | ]
|
31 | 32 | libs = [
|
|
71 | 72 | sitemapgen4j : "com.github.dfabulich:sitemapgen4j:$versions.sitemapgen4j",
|
72 | 73 | jbcrypt : "org.mindrot:jbcrypt:$versions.jbcrypt",
|
73 | 74 | romeRss : "rome:rome:$versions.romeRss",
|
74 |
| - |
| 75 | + kotlin : "org.jetbrains.kotlin:kotlin-stdlib:$versions.kotlin", |
| 76 | + |
75 | 77 | junit : "junit:junit:$versions.junit",
|
76 | 78 | ]
|
77 | 79 | }
|
|
0 commit comments