인프런 커뮤니티 질문&답변

이상현님의 프로필 이미지
이상현

작성한 질문수

실전! 스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발

오류가 뜹니다

작성

·

170

0

junit을 버전4로 설정하고 작성했는데 이런 오류가 뜹니다 문제가 뭔가요 ㅠㅠ

답변 1

0

김영한님의 프로필 이미지
김영한
지식공유자

안녕하세요. 이상현님

Junit4 버전이 잘 설정이 안된 것 같아요^^!

build.gradle를 메뉴얼 v1.7에 있는 내용, 그러니까 다음과 같이 수정하고 진행해주세요.

만약 그래도 잘 안되면 전체 프로젝트를 압축해서 올려주세요.

 

plugins {
	id 'org.springframework.boot' version '2.1.9.RELEASE'
	id 'java'
}

apply plugin: 'io.spring.dependency-management'

ext["h2.version"] = "1.4.199" //h2 데이터베이스 버전 지정

group = 'jpabook'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'

configurations {
	compileOnly {
		extendsFrom annotationProcessor
	}
}

repositories {
	mavenCentral()
}

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-web'
  implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
	implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

	compileOnly 'org.projectlombok:lombok'
	runtimeOnly 'com.h2database:h2'
	annotationProcessor 'org.projectlombok:lombok'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'

}
이상현님의 프로필 이미지
이상현

작성한 질문수

질문하기