아무거나

[Gradle] Node Gradle Plugin Not Found 이슈 해결 본문

Java/Gradle & Maven

[Gradle] Node Gradle Plugin Not Found 이슈 해결

전봉근 2021. 6. 23. 10:41
반응형
  • 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"
          ...
        }
        
반응형
Comments