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>
반응형
'Dev_Log' 카테고리의 다른 글
[Java] Unsupported major.minor version 52.0 (0) | 2021.03.16 |
---|---|
[Maven] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:compile (0) | 2021.03.16 |
[JSP] java.lang.ClassNotFoundException: org.json.simple.JSONObject (0) | 2021.03.13 |
[Java] org.openqa.selenium.InvalidArgumentException: invalid argument (0) | 2021.03.05 |
[JS] uncaught referenceerror $ is not defined (0) | 2021.03.04 |