#java #gradle #groovy
Вопрос:
в моем проекте good’ol java я хочу автоматически загружать файлы JS из репозиториев NPM.
Я придумал Gradle DSL, как:
configurations { npm { // disableConsistentResolution() // transitive = false // withoutClassifier() } } dependencies { api 'a:b' npm 'toastr:2.1.3' npm 'tinyColorPicker:1.1.1' }
Если я выполню команду gradle, она завершится неудачей с:
Execution failed for task ':writePackageJson'. gt; Could not resolve all files for configuration ':npm'. gt; Could not find toastr:2.1.3:. Required by: project : gt; Could not find tinyColorPicker:1.1.1:. Required by: project :
Как отключить разрешение зависимостей для моей npm
конфигурации?
Возможно, есть другие способы извлечь пакеты npm без соответствующего JS-приложения?
ТИА