Skip to content

Commit e06c2bb

Browse files
authored
Upgrade many dependencies. Forgot to commit an unused config (StubbornJava#107)
1 parent f10d15d commit e06c2bb

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

ansible/roles/apps/jvm_app_base/templates/secure.conf.j2

-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,3 @@ github {
99
clientSecret="{{github['client_secret']}}"
1010
}
1111

12-
metrics {
13-
graphite.host="{{metrics.graphite.host}}"
14-
grafana.api_key="{{metrics.grafana.api_key}}"
15-
}

gradle/dependencies.gradle

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
// {{start:dependencies}}
22
ext {
33
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
77
logback : '1.2.3', // Logging
8-
undertow : '2.0.13.Final',// Webserver
8+
undertow : '2.0.28.Final',// Webserver
99
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
1313
htmlCompressor : '1.5.2', // HTML compression
14-
hikaricp : '3.2.0', // JDBC connection pool
14+
hikaricp : '3.4.1', // JDBC connection pool
1515
jool : '0.9.12', // Functional Utils
1616
hsqldb : '2.3.4', // In memory SQL db
1717
aws : '1.11.419', // AWS Java SDK
@@ -25,7 +25,8 @@ ext {
2525
sitemapgen4j : '1.0.6', // Sitemap generator for SEO
2626
jbcrypt : '0.4', // BCrypt salted hashing library
2727
romeRss : '1.0', // RSS Library
28-
28+
kotlin : '1.3.60', // Kotlin
29+
2930
junit : '4.12', // Unit Testing
3031
]
3132
libs = [
@@ -71,7 +72,8 @@ ext {
7172
sitemapgen4j : "com.github.dfabulich:sitemapgen4j:$versions.sitemapgen4j",
7273
jbcrypt : "org.mindrot:jbcrypt:$versions.jbcrypt",
7374
romeRss : "rome:rome:$versions.romeRss",
74-
75+
kotlin : "org.jetbrains.kotlin:kotlin-stdlib:$versions.kotlin",
76+
7577
junit : "junit:junit:$versions.junit",
7678
]
7779
}

stubbornjava-common/src/main/java/com/stubbornjava/common/DeterministicObjectMapper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static ObjectMapper create(ObjectMapper original, CustomComparators custo
3838
*/
3939
SerializerProvider serializers = mapper.getSerializerProviderInstance();
4040

41-
// This module is reponsible for replacing non-deterministic objects
41+
// This module is responsible for replacing non-deterministic objects
4242
// with deterministic ones. Example convert Set to a sorted List.
4343
SimpleModule module = new SimpleModule();
4444
module.addSerializer(Collection.class,

0 commit comments

Comments
 (0)