File tree 8 files changed +48
-13
lines changed
net.adoptopenjdk.v3.tests
net.adoptopenjdk.v3.vanilla
src/main/java/net/adoptopenjdk/v3/vanilla/internal
8 files changed +48
-13
lines changed Original file line number Diff line number Diff line change 1
- <c : changelog xmlns : c =" urn:com.io7m.changelog:4.0" project =" openjdk-api-java-client" >
2
- <c : releases >
3
- </c : releases >
4
- <c : ticket-systems >
5
- <c : ticket-system id =" com.github.adoptopenjdk.openjdk-api-java-client"
6
- url =" https://github.com/AdoptOpenJDK/openjdk-api-java-client/issues/"
7
- default =" true" />
8
- </c : ticket-systems >
1
+ <?xml version =" 1.0" encoding =" UTF-8" standalone =" no" ?>
2
+ <c : changelog project =" openjdk-api-java-client" xmlns : c =" urn:com.io7m.changelog:4.0" >
3
+ <c : releases >
4
+ <c : release date =" 2020-06-20T19:23:13+00:00" ticket-system =" com.github.adoptopenjdk.openjdk-api-java-client" version =" 0.4.0" >
5
+ <c : changes >
6
+ <c : change date =" 2020-06-20T00:00:00+00:00" summary =" Add support for new fields. Thanks @maxandersen." >
7
+ <c : tickets >
8
+ <c : ticket id =" 6" />
9
+ </c : tickets >
10
+ </c : change >
11
+ <c : change date =" 2020-06-20T19:23:13+00:00" summary =" Enable support for ignoring unrecognized fields. Thanks @joschi." >
12
+ <c : tickets >
13
+ <c : ticket id =" 8" />
14
+ </c : tickets >
15
+ </c : change >
16
+ </c : changes >
17
+ </c : release >
18
+ </c : releases >
19
+ <c : ticket-systems >
20
+ <c : ticket-system default =" true" id =" com.github.adoptopenjdk.openjdk-api-java-client" url =" https://github.com/AdoptOpenJDK/openjdk-api-java-client/issues/" />
21
+ </c : ticket-systems >
9
22
</c : changelog >
Original file line number Diff line number Diff line change 9
9
<parent >
10
10
<artifactId >net.adoptopenjdk</artifactId >
11
11
<groupId >net.adoptopenjdk</groupId >
12
- <version >0.3.3 </version >
12
+ <version >0.4.0 </version >
13
13
</parent >
14
14
15
15
<artifactId >net.adoptopenjdk.site</artifactId >
Original file line number Diff line number Diff line change 9
9
<parent >
10
10
<artifactId >net.adoptopenjdk</artifactId >
11
11
<groupId >net.adoptopenjdk</groupId >
12
- <version >0.3.3 </version >
12
+ <version >0.4.0 </version >
13
13
</parent >
14
14
15
15
<artifactId >net.adoptopenjdk.v3.api</artifactId >
Original file line number Diff line number Diff line change 9
9
<parent >
10
10
<artifactId >net.adoptopenjdk</artifactId >
11
11
<groupId >net.adoptopenjdk</groupId >
12
- <version >0.3.3 </version >
12
+ <version >0.4.0 </version >
13
13
</parent >
14
14
15
15
<artifactId >net.adoptopenjdk.v3.tests</artifactId >
60
60
</dependency >
61
61
</dependencies >
62
62
63
+ <contributors >
64
+ <contributor >
65
+ <name >Max Rydahl Andersen</name >
66
+
67
+ <url >http://xam.dk</url >
68
+ </contributor >
69
+ </contributors >
63
70
</project >
Original file line number Diff line number Diff line change 9
9
<parent >
10
10
<artifactId >net.adoptopenjdk</artifactId >
11
11
<groupId >net.adoptopenjdk</groupId >
12
- <version >0.3.3 </version >
12
+ <version >0.4.0 </version >
13
13
</parent >
14
14
15
15
<artifactId >net.adoptopenjdk.v3.vanilla</artifactId >
Original file line number Diff line number Diff line change @@ -61,6 +61,13 @@ public static final class AOV3AvailableReleasesJSON
61
61
62
62
@ JsonProperty (value = "most_recent_lts" , required = true )
63
63
BigInteger mostRecentLTS = BigInteger .ZERO ;
64
+
65
+ @ JsonProperty (value = "most_recent_feature_version" , required = true )
66
+ BigInteger getMostRecentFeatureVersion ;
67
+
68
+ @ JsonProperty (value = "tip_version" , required = true )
69
+ BigInteger tipVersion ;
70
+
64
71
}
65
72
66
73
@ JsonDeserialize
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ public static ObjectMapper createObjectMapper()
33
33
final JsonMapper mapper =
34
34
JsonMapper .builder ()
35
35
.configure (DeserializationFeature .USE_BIG_INTEGER_FOR_INTS , true )
36
+ .disable (DeserializationFeature .FAIL_ON_UNKNOWN_PROPERTIES )
36
37
.build ();
37
38
38
39
final var deserializers = AOV3Deserializers .create ();
Original file line number Diff line number Diff line change 14
14
15
15
<groupId >net.adoptopenjdk</groupId >
16
16
<artifactId >net.adoptopenjdk</artifactId >
17
- <version >0.3.3 </version >
17
+ <version >0.4.0 </version >
18
18
<packaging >pom</packaging >
19
19
20
20
<name >net.adoptopenjdk</name >
58
58
<url >http://io7m.com</url >
59
59
</developer >
60
60
</developers >
61
+ <contributors >
62
+ <contributor >
63
+ <name >Jochen Schalanda</name >
64
+
65
+ <url >https://github.com/joschi/</url >
66
+ </contributor >
67
+ </contributors >
61
68
62
69
<issueManagement >
63
70
<url >http://github.com/AdoptOpenJDK/openjdk-api-java-client/issues</url >
You can’t perform that action at this time.
0 commit comments