728x90
기존에 Eclipse로 진행하던 프로젝트를 IntelliJ에 Import해서 컴파일 하고자 할때 이런 오류가 발생하기도 합니다.
'maven-eclipse-plugin'을 찾을 수 없다고 나옵니다.
더구나, pom.xml의 project 설정에서 'http://maven.apache.org/maven-v4_0_0.xsd' 에 대한 "HTTP links are not secure"라는 주의사항도 발생하고 있어요.
자세한 사항은 아래의 소스코드를 확인하시기 바랍니다.
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
.
.
.
<build>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<additionalProjectnatures>
<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
<additionalBuildcommands>
<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>7</source>
<target>7</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<mainClass>org.test.int1.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
이걸 어떻게 해결해야할까 고민하시던 분들은 간단하게 아래의 주소로 바꿔주세요.
그러면, "HTTP links are not secure" 경고도 사라지고,
maven-eclipse-plugin'에 대한 문제도 사라질 겁니다.
기존의 "HTTP links are not secure" 발생하던 경로
http://maven.apache.org/maven-v4_0_0.xsd
아래의 새로운 xsd 주소로 변경해주세요.
새로운 xsd 주소
https://maven.apache.org/xsd/maven-4.0.0.xsd
두가지 문제가 모두 사라진 모습을 확인하시면 끝~~!!!
728x90
'Development > Java' 카테고리의 다른 글
java UUID (Universally Unique Identifier) 랜덤 생성 방법 (범용 고유 식별자) (2) | 2023.10.21 |
---|---|
Maven build시 에러 : Fatal error compiling: tools.jar not found (0) | 2023.08.22 |
Mockito 클래스의 doThrow()와 thenThrow() 메소드의 차이점과 예제 소스 (0) | 2023.04.21 |
test coverage를 private constructor 혹은 메소드에 적용 방법 (0) | 2023.03.28 |
IntelliJ에서 Subversion (svn) 설치 및 저장소 경로 설정 & Check Out 받기 (0) | 2023.01.13 |
댓글