mac IDEA配置Groovy SDK
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac IDEA配置Groovy SDK相关的知识,希望对你有一定的参考价值。
参考技术A idea写.groovy文件,报需要配置Groovy SDK:点击Configure Groovy SDK,若Use library找不到groovy的sdk的话,需要手动去Create配置。
另外,在idea中无法切到/user目录下,mac按Cmd + Shift + G来切换目录。
错误记录IntelliJ IDEA 编译 Groovy 项目报错 ( Groovy SDK is not configured for module )
文章目录
一、报错信息
Groovy SDK is not configured for module ''
运行时提示 :
错误: 找不到或无法加载主类 org.codehaus.groovy.tools.GroovyStarter
二、修改方案
猜测是 Gradle 版本与 Groovy 版本不匹配导致 ;
在 IntelliJ IDEA 中重新创建一个 Groovy 工程 , 看下配置 ;
将 build.gradle 中的
dependencies
compile 'org.codehaus.groovy:groovy-all:3.0.5'
配置 , 修改为
dependencies
compile 'org.codehaus.groovy:groovy-all:2.3.11'
配置 , 即可编译成功 ;
上述只是提供一个问题解决思路 ;
以上是关于mac IDEA配置Groovy SDK的主要内容,如果未能解决你的问题,请参考以下文章