File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,10 @@ xpath-to-xml uses [semver](http://semver.org/) for its versioning convention.
9
9
### Upcoming
10
10
- Core
11
11
- preceding and preceding-sibling axises support.
12
- - 🧰 [ Gson] Bump Gson version to 2.8.9
12
+
13
+ ### 2.3.4
14
+ - 🧰 [ Gson] Bump Gson version to 2.9.0
15
+ - 🧰 [ Gson] Push minimal java version to Java 7
13
16
- 🧰 [ Jackson] Bump Jackson version to 2.13.1
14
17
- 🧰 [ JDOM] Bump JDOM2 version to 2.0.6.1
15
18
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ scalaxml = '2.0.1'
9
9
[libraries ]
10
10
assertj = ' org.assertj:assertj-core:3.22.0'
11
11
dom4j = ' org.dom4j:dom4j:2.1.3'
12
- gson = ' com.google.code.gson:gson:2.8.9 '
12
+ gson = ' com.google.code.gson:gson:2.9.0 '
13
13
jackson-databind = { module = ' com.fasterxml.jackson.core:jackson-databind' , version.ref = ' jackson' }
14
14
jackson-dataformat-yaml = { module = ' com.fasterxml.jackson.dataformat:jackson-dataformat-yaml' , version.ref = ' jackson' }
15
15
jaxen = ' jaxen:jaxen:1.2.0'
Original file line number Diff line number Diff line change @@ -2,11 +2,20 @@ ext.moduleName = 'com.github.simych.xpath.gson'
2
2
3
3
apply from : rootProject. file(' gradle/benchmark-jmh.gradle' )
4
4
5
+ sourceCompatibility = JavaVersion . VERSION_1_7
6
+ targetCompatibility = JavaVersion . VERSION_1_7
7
+
5
8
dependencies {
6
9
api project(' :xpath-to-xml-core' )
7
10
8
11
implementation libs. gson
9
12
10
13
testImplementation project(' :xpath-to-xml-test' )
11
14
testImplementation libs. bundles. junit
15
+ }
16
+
17
+ compileJava {
18
+ if (JavaVersion . current(). isJava9Compatible()) {
19
+ options. release = 7
20
+ }
12
21
}
You can’t perform that action at this time.
0 commit comments