aws / aws-toolkit-eclipse

(End of life: May 31, 2023) AWS Toolkit for Eclipse

Home Page:http://aws.amazon.com/eclipse

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CodeDeploy plugin will not upload files to s3 in Eclipse 2020-12

eschulma opened this issue · comments

As with several other open issues, attempting to upload the final artifact to S3 triggers a ClassNotFoundException error for JAXBException because the java.xml.bind jar was removed in the Java 11 runtime.

The latest version of AWS Java SDK v1, 1.11.948, has removed all of these deprecated classes and requires only one line change in the plugin source code here to compile (the NotThreadSafe annotation in AwsPluginAccountManager is replaced with Contract (threading = org.apache.http.annotation.ThreadingBehavior.UNSAFE) and the tests all pass. While I am trying to get a pull request together my lack of knowledge of plugin development is a severe stumbling block.