-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No such property: applicationName for class: org.codehaus.groovy.grails.resolve.maven.aether.AetherDependencyManager #1
Comments
DownloadSourcesAndJavadocs doesn't work for 2.3.x . In 2.3.x, there is a command in Grails to download the sources. This is how I've been using the scripts with 2.3.x : # installing script
cd $GRAILS_HOME/scripts
wget https://github.com/lhotari/grails-eclipse-scripts/raw/master/scripts/StsLinkSourcesAndJavadocs.groovy
# using script
cd ~/my-grails-project
grails integrate-with --eclipse
grails compile
grails refresh-dependencies --include-source --include-javadoc /dev/null
grails sts-link-sources-and-javadocs |
I use this type of shell functions in oh-my-zsh: function grailsdev_sts_link_script_install {
(
if [ -d "$GRAILS_HOME/scripts" ]; then
cd "$GRAILS_HOME/scripts"
if [ ! -f StsLinkSourcesAndJavadocs.groovy ]; then
wget https://github.com/lhotari/grails-eclipse-scripts/raw/master/scripts/StsLinkSourcesAndJavadocs.groovy
fi
fi
)
}
function grails_eclipse {
grailsdev_sts_link_script_install
grails clean --non-interactive
grails integrate-with --eclipse --non-interactive
grails compile --non-interactive
grails refresh-dependencies --non-interactive --include-source --include-javadoc /dev/null
grails sts-link-sources-and-javadocs --stacktrace
} by using this I can do "grails_eclipse" in the project directory and it takes care of installing the script if it's missing. |
+1 I have the save problem. I did not get the source jar in Grails 2.3.6 |
When I do
I get this error:
|
Hello I face:
Steps to reproduce:
Grails version: 2.3.5
The text was updated successfully, but these errors were encountered: