我的项目插件代码块:
class Base
{
public:
void someFunc() { cout << "Base::someFunc" << endl; }
void someOtherFunc() {
cout << "Base::someOtherFunc" << endl;
someFunc(); //calls Base:someFunc()
};
class Derived : public Base
{
public:
void someFunc() { cout << "Derived::someFunc" << endl; }
};
int main()
{
Base b* = new Derived();
b->someOtherFunc(); // Calls Base::someOtherFunc()
}
但是当我投影时,在控制台中显示以下错误消息:
无法解析依赖项(有关详细信息,请在BuildConfig.groovy中将日志级别设置为“警告”):
答案 0 :(得分:0)
在过去几年的某个时候,默认grails repo的位置发生了变化。尝试将其添加到repositories
块:
mavenRepo(root:"https://repo.grails.org/grails/plugins", name:"newGrailsCentral")
PS:你为什么使用2.2.4?如果您正在开始一个新项目,正如您的问题所暗示的那样,那么您应该使用2.4.5或3.0.1(如果可能的话)。