일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Web Server
- Spring Boot
- java
- MySQL
- tool
- AWS
- db
- javascript
- devops
- 요리
- jsp
- redis
- Gradle
- linux
- IntelliJ
- ubuntu
- php
- Spring
- JVM
- elasticsearch
- Design Patterns
- ReactJS
- jenkins
- springboot
- Git
- 맛집
- laravel
- Spring Batch
- Oracle
- it
Archives
- Today
- Total
아무거나
[Gradle] Node Gradle Plugin Not Found 이슈 해결 본문
반응형
- Node Gradle Plugin Not Found 이슈
- 원인내용: Could not find com.moowork.gradle:gradle-node-plugin:1.3.1 (Gradle6 부터 원인 발생)
- 해결
- build.gradle 수정
... repositories { ... maven { url "https://plugins.gradle.org/m2/" } } dependencies { ... classpath "com.github.node-gradle:gradle-node-plugin:3.1.0" } ... subprojects { ... apply plugin: "com.github.node-gradle.node" ... }
- build.gradle 수정
반응형
'Java & Kotlin > Gradle & Maven' 카테고리의 다른 글
[Gradle] Gradle 다중 dependsOn 선언시 예측할 수 없는 종속성 순서에 대한 문제 발생 (0) | 2022.05.26 |
---|---|
[Maven] Blocked mirror for repositories .. 에러가 표시되며 다운로드가 안되는경우 (1) | 2022.04.08 |
[maven] Centos Maven 설치 (0) | 2020.12.27 |
Build 할 때 java.lang.NoClassDefFoundError: org/gradle/wrapper/GradleWrapperMain 에러 해결 (1) | 2020.11.05 |
[gradle] gradle을 이용한 통합 빌드 제공 (0) | 2019.10.08 |
Comments