在哪里放置默认模块的模块描述符?
Where to put a module descriptor for the default module?
我选择将我的小项目的代码放在 'default' 模块中(在文件 /source/main.ceylon 中),但是我应该将我的模块描述符放在哪里?
目前我在 /source/module.ceylon 有它
但这给了我可怕的警告 "module descriptor encountered in root source directory" 将鼠标悬停在模块名称上时。
我需要一个模块描述符,因为我需要依赖一个 Ceylon 模块 (httpd
)
默认模块不能有模块描述符,因此不能有依赖项。虽然默认模块对于快速 hello world 类型的程序很有用,但通常建议使用适当命名的模块。
我选择将我的小项目的代码放在 'default' 模块中(在文件 /source/main.ceylon 中),但是我应该将我的模块描述符放在哪里? 目前我在 /source/module.ceylon 有它 但这给了我可怕的警告 "module descriptor encountered in root source directory" 将鼠标悬停在模块名称上时。
我需要一个模块描述符,因为我需要依赖一个 Ceylon 模块 (httpd
)
默认模块不能有模块描述符,因此不能有依赖项。虽然默认模块对于快速 hello world 类型的程序很有用,但通常建议使用适当命名的模块。