Skip to content

Commit

Permalink
Merge pull request #92 from adoptium/main
Browse files Browse the repository at this point in the history
merge main into prod
  • Loading branch information
gdams authored Nov 6, 2023
2 parents c229ad7 + 71cbfa3 commit eba1ffa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion adoptium-marketplace-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,16 @@ class ExtractAdoptiumReleases {
}
.groupBy { Triple(it.openjdkVersionData, it.releaseLink, it.releaseName) }
.map {
ReleaseList(it.value)
ReleaseList(
listOf(
Release(
it.value[0],
it.value
.flatMap { release -> release.binaries }
.toList()
)
)
)
}
.toList()
}
Expand Down
2 changes: 1 addition & 1 deletion api.adoptium.net

0 comments on commit eba1ffa

Please sign in to comment.