You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/toolkit/jetbrains-core/src/software/aws/toolkits/jetbrains/services/codemodernizer/CodeModernizerManager.kt
Copy file name to clipboardExpand all lines: plugins/toolkit/jetbrains-core/src/software/aws/toolkits/jetbrains/services/codemodernizer/CodeModernizerSession.kt
Copy file name to clipboardExpand all lines: plugins/toolkit/jetbrains-core/src/software/aws/toolkits/jetbrains/services/codemodernizer/model/CodeModernizerArtifact.kt
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,6 @@ open class CodeModernizerArtifact(
53
53
val manifest = loadManifest()
54
54
if (manifest.version > maxSupportedVersion) {
55
55
// If not supported we can still try to use it, i.e. the versions should largely be backwards compatible
56
-
// Can also notify user to consider upgrading the toolkit version.
Copy file name to clipboardExpand all lines: plugins/toolkit/jetbrains-core/src/software/aws/toolkits/jetbrains/services/codemodernizer/model/CodeModernizerSessionContext.kt
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -66,10 +66,6 @@ data class CodeModernizerSessionContext(
66
66
return isIdea
67
67
}
68
68
69
-
/**
70
-
* Can eventually modify to use an approach based on walkTopDown instead of VfsUtil.collectChildrenRecursively(root) in createZipWithModuleFiles.
71
-
* We now recurse the file tree twice and then filter which hurts performance for large projects.
Copy file name to clipboardExpand all lines: plugins/toolkit/jetbrains-core/src/software/aws/toolkits/jetbrains/services/codemodernizer/ui/components/BuildErrorDialog.kt
Copy file name to clipboardExpand all lines: plugins/toolkit/jetbrains-core/src/software/aws/toolkits/jetbrains/services/codemodernizer/ui/components/ValidationErrorDialog.kt
codemodernizer.notification.info.download.started.content=Downloading the updated code
579
581
codemodernizer.notification.info.download.started.title=Download Started
580
582
codemodernizer.notification.info.modernize_complete.content=Transformation job successfully finished. You can view the changes and accept changes to further test the transformed code and push it to production.
codemodernizer.notification.info.modernize_ongoing.view_status=View status
590
592
codemodernizer.notification.info.modernize_partial_complete.content=Transformation job partially successful! The new code is not fully Java {0} compatible yet. You will need to fix changes yourself. You can view the changes by clicking view diff below.
codemodernizer.notification.info.submitted_project.content=Your project has been submitted for transformation. The code transformation process may take 10-30 mins depending on the size of your project.
codemodernizer.notification.info.transformation_summary.content=We need to download the transformation summary, please try again after this has completed.
codemodernizer.notification.warn.invalid_project.description.reason.invalid_jdk_versions=We could not find an upgrade eligible application. We currently support upgrade of Maven Java applications of version 8 and 11. Go to File -> Project Structure and ensure the correct JDK is selected in the SDK field.
609
+
codemodernizer.notification.warn.invalid_project.description.reason.invalid_jdk_versions=We could not find an upgrade eligible application.
606
610
codemodernizer.notification.warn.invalid_project.description.reason.missing_content_roots=We could not find an upgrade eligible application. We currently support upgrade of Maven Java applications of version 8 and 11.
607
611
codemodernizer.notification.warn.invalid_project.description.reason.no_valid_files=We could not find a valid configuration file for the project. We currently support Maven build tool and require a POM.xml to identify build configurations.
608
612
codemodernizer.notification.warn.invalid_project.description.reason.not_logged_in=We can not start the transform as you are not logged in with sso, please log in to CodeWhisperer using SSO.
@@ -612,6 +616,7 @@ codemodernizer.notification.warn.maven_failed.content=We were unable to build an
612
616
codemodernizer.notification.warn.maven_failed.title=Amazon Q Code Transform unable to zip dependencies
613
617
codemodernizer.notification.warn.on_resume.unknown_status_response.content=We received data from Amazon Q in a format that the plugin cannot handle. You may need to update the plugin and then try again.
614
618
codemodernizer.notification.warn.on_resume.unknown_status_response.title=Unable to resume job.
codemodernizer.validationerrordialog.description.main=Amazon Q Code cannot transform your project as it is not eligible.
674
+
codemodernizer.validationerrordialog.description.main=Amazon Q Code cannot transform your project as it is not eligible. We currently support upgrade of Maven Java applications of version 8 and 11. To start, go to File -> Project Structure and ensure the correct JDK is selected in the SDK field.
0 commit comments