aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws-generator
diff options
context:
space:
mode:
authorJacek Poreda <jacek.poreda@sonarsource.com>2024-12-11 13:29:02 +0100
committersonartech <sonartech@sonarsource.com>2024-12-18 20:03:11 +0000
commit6a7f3bdf15eaa9ce456ddd482d063496be3ddaa3 (patch)
treee0d5ff7b7a84ba403d4ec9a27380cf2e2e71a50e /sonar-ws-generator
parent6a146e820674a08f14b03db7f48f3ec7d393d38b (diff)
downloadsonarqube-6a7f3bdf15eaa9ce456ddd482d063496be3ddaa3.tar.gz
sonarqube-6a7f3bdf15eaa9ce456ddd482d063496be3ddaa3.zip
SONAR-19122 Update annotations from javax to jakarta
Diffstat (limited to 'sonar-ws-generator')
-rw-r--r--sonar-ws-generator/src/main/resources/defaultWsClient.vm2
-rw-r--r--sonar-ws-generator/src/main/resources/package-info.vm2
-rw-r--r--sonar-ws-generator/src/main/resources/request.vm2
-rw-r--r--sonar-ws-generator/src/main/resources/webService.vm2
-rw-r--r--sonar-ws-generator/src/main/resources/wsClient.vm2
5 files changed, 5 insertions, 5 deletions
diff --git a/sonar-ws-generator/src/main/resources/defaultWsClient.vm b/sonar-ws-generator/src/main/resources/defaultWsClient.vm
index 5b0e916d79c..7b7230578ca 100644
--- a/sonar-ws-generator/src/main/resources/defaultWsClient.vm
+++ b/sonar-ws-generator/src/main/resources/defaultWsClient.vm
@@ -19,7 +19,7 @@
*/
package org.sonarqube.ws.client;
-import javax.annotation.Generated;
+import jakarta.annotation.Generated;
import org.sonarqube.ws.client.ce.CeService;
import org.sonarqube.ws.client.organization.OrganizationService;
import org.sonarqube.ws.client.projectanalysis.ProjectAnalysisService;
diff --git a/sonar-ws-generator/src/main/resources/package-info.vm b/sonar-ws-generator/src/main/resources/package-info.vm
index c540272dc61..31ba78e3f63 100644
--- a/sonar-ws-generator/src/main/resources/package-info.vm
+++ b/sonar-ws-generator/src/main/resources/package-info.vm
@@ -26,5 +26,5 @@ package $helper.packageName();
#end
import javax.annotation.ParametersAreNonnullByDefault;
-import javax.annotation.Generated;
+import jakarta.annotation.Generated;
diff --git a/sonar-ws-generator/src/main/resources/request.vm b/sonar-ws-generator/src/main/resources/request.vm
index 67b27cc1c92..7250a50b425 100644
--- a/sonar-ws-generator/src/main/resources/request.vm
+++ b/sonar-ws-generator/src/main/resources/request.vm
@@ -20,7 +20,7 @@
package $helper.packageName($webService.path.asString);
import java.util.List;
-import javax.annotation.Generated;
+import jakarta.annotation.Generated;
/**
#if ($action.internal)
diff --git a/sonar-ws-generator/src/main/resources/webService.vm b/sonar-ws-generator/src/main/resources/webService.vm
index 7444fdeba2d..16a62a72836 100644
--- a/sonar-ws-generator/src/main/resources/webService.vm
+++ b/sonar-ws-generator/src/main/resources/webService.vm
@@ -20,7 +20,7 @@
package $helper.packageName($webService.path.asString);
import java.util.stream.Collectors;
-import javax.annotation.Generated;
+import jakarta.annotation.Generated;
import org.sonarqube.ws.MediaTypes;
import org.sonarqube.ws.client.BaseService;
import org.sonarqube.ws.client.GetRequest;
diff --git a/sonar-ws-generator/src/main/resources/wsClient.vm b/sonar-ws-generator/src/main/resources/wsClient.vm
index 3b7a8decfc3..47a0a834e0c 100644
--- a/sonar-ws-generator/src/main/resources/wsClient.vm
+++ b/sonar-ws-generator/src/main/resources/wsClient.vm
@@ -19,7 +19,7 @@
*/
package org.sonarqube.ws.client;
-import javax.annotation.Generated;
+import jakarta.annotation.Generated;
#foreach($webService in $webServices)
#if ($helper.isIncluded($webService.path.asString))