Dev_Log

[Maven] Plugin org.apache.maven.plugins:maven-install-plugin:2.4 or one of its dependencies could not be resolved

LeeDaniel 2021. 3. 16. 15:49
반응형
Plugin org.apache.maven.plugins:maven-install-plugin:2.4 or one of its dependencies could not be resolved

✔ Solution
pom.xml <dependencies>안에 아래내용 추가
<!-- maven plugin -->
<dependency>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-install-plugin</artifactId>  
  <version>2.4</version>
  <type>maven-plugin</type>
</dependency>
<!-- maven plugin -->
<dependency>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-install-plugin</artifactId>  
  <version>2.4</version>
  <type>maven-plugin</type>
</dependency>
반응형