I'm trying to deploy the following project from IBM developerWorks to Bluemix:
Building a Java EE app on IBM Bluemix Using Watson and Cloudant
through the Bluemix plugin in Eclipse (Called: IBM Eclipse Tools for Bluemix). However I keep getting the following error
Project facet Cloud Foundry Standalone Application version 1.0 is not supported
Used Versions:
There is no issue when I do this through Cloud Foundry CLI cf push
Show activity on this post. Remove the Cloud Foundry Standalone Application version 1.0 facet from the project via project -> properties -> project facets. Bluemix tools maps projects to bluemix runtimes via project facets so that different runtimes would be associated with different projects.
How to fix Source folder is not a Java project error in eclipse. If you are creating a maven web project in eclipse and get a “Source folder is not a Java project” error, here is how to fix that : Select “Java” and click on “Apply and Close” and you should see the java source folder package structure in the project.
To troubleshoot Access Denied errors, you must know if your distribution’s origin domain name is an S3 website endpoint or an S3 REST API endpoint. Follow these steps to determine the endpoint type: Open the CloudFront console. Choose your CloudFront distribution, and then choose Distribution Settings.
Select “Java” and click on “Apply and Close” and you should see the java source folder package structure in the project. © 2017 – 2018, https:. All rights reserved.
Remove the Cloud Foundry Standalone Application
version 1.0 facet from the project via project -> properties -> project facets
.
Bluemix tools maps projects to bluemix runtimes via project facets
so that different runtimes would be associated with different projects.
It's probably just that the stand alone facet which is probably associated with cloudfoundry tools isn't supported by bluemix tools plugin
As @Ghurdyl mentions in the comments, If you cannot deselect the CloudFoundry Standalone Applicaiton, then remove the facet from the project's settings file (.settings/org.eclipse.wst.common.project.facet.core.xml
):
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<installed facet="cloudfoundry.standalone.app" version="1.0"/>
<installed facet="java" version="10"/>
</faceted-project>
to:
<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
<installed facet="java" version="10"/>
</faceted-project>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With