Skip to content
Snippets Groups Projects

Update API to use SDK 1.1.1 and latest 3.8 Quarkus

Merged Martin Lowe requested to merge malowe/main/1.1.1-sdk into main
1 unresolved thread
5 files
+ 44
38
Compare changes
  • Side-by-side
  • Inline
Files
5
@@ -11,19 +11,17 @@
@@ -11,19 +11,17 @@
*/
*/
package org.eclipsefoundation.downloads.api;
package org.eclipsefoundation.downloads.api;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import org.eclipse.microprofile.rest.client.inject.RegisterRestClient;
import org.eclipse.microprofile.rest.client.inject.RegisterRestClient;
import org.eclipsefoundation.downloads.models.ReleaseVersionPackages.ReleaseTrackerPackages;
import org.eclipsefoundation.downloads.models.ReleaseVersionPackages.ReleaseTrackerPackages;
import org.eclipsefoundation.downloads.models.TrackedReleases;
import org.eclipsefoundation.downloads.models.TrackedReleases;
import org.jboss.resteasy.annotations.GZIP;
 
import jakarta.ws.rs.GET;
 
import jakarta.ws.rs.Path;
 
import jakarta.ws.rs.PathParam;
/**
/**
* Rest client bound to the drupal release API
* Rest client bound to the drupal release API
*/
*/
@GZIP
@RegisterRestClient(configKey = "drupal")
@RegisterRestClient(configKey = "drupal")
public interface DrupalAPI {
public interface DrupalAPI {
Loading