Warning: Deprecated! Heroku Eclipse plugin is a fully integrated plugin into Eclipse IDE that will allow developers to manage their Heroku apps and environment right from their favourite IDE
1
stars
0
forks
source link
HerokuProperties.getString("defaultRepo") resolving to !defaultRepo! #62
When cloning an app, HerokuProperties.getString("defaultRepo") is failing to resolve and is returning !defaultRepo! instead of heroku. This is then causing issues with running apps locally because the app dir has a ! in it and is being mistaken for a JAR. It looks like the problem is that the property is:
heroku.eclipse.git.defaultRepo=heroku
but HerokuProperties it looking for the prefix com.heroku.eclipse.core.services.heroku.
When cloning an app,
HerokuProperties.getString("defaultRepo")
is failing to resolve and is returning!defaultRepo!
instead ofheroku
. This is then causing issues with running apps locally because the app dir has a!
in it and is being mistaken for a JAR. It looks like the problem is that the property is:but
HerokuProperties
it looking for the prefixcom.heroku.eclipse.core.services.heroku
.