-
자바 플러그인 빌드시 오류와 Junit 오류과거⚰️ 2021. 7. 12. 18:45
에러 : The import org.junit cannot be resolved
Description Resource Path Location Type
The import org.junit cannot be resolved MoimTest.java /classLoad/src/test/java/classLoad line 3 Java Problem메이븐 업데이트를 하니 해결...
에러 : <build>는 </dependencies> 얘 안에 있으면 안된다.,,,,
에러 : Description Resource Path Location Type
Dynamic Web Module 3.0 requires Java 1.6 or newer. classLoad line 1 Maven Java EE Configuration Problem얘도 자바 버젼이 안맞아서 나는 오류 build path 수정 컴파일러 수정 fect 수정
pom.xml에
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>이거 추가하고 Update Project Configuration하니 해결
이클립스 세로줄 제거
이클립스 업뎃을 했더니
이런게 생김
general
여기서 show print margin 체크 해제하자...
왜 있는 기능일까 궁금하네
'과거⚰️' 카테고리의 다른 글
all buildscript {} blocks must appear before any plugins {} blocks in the script (0) 2022.02.25 프로그래머스 위클리첼린지 상호평가 (0) 2021.08.12 HashMap.get() 사용시 키가 맞는데 오류도 안나고 값도 안가져오고 멈춤 (0) 2021.06.11 java.lang.NumberFormatException: empty string 에러 (0) 2021.05.26 마이바티스 ${} #{} (0) 2021.05.26