Toggle theme
문제를 잘 정의하는 것은 문제를 절반 해결한 것이다. - 2023.12
사용자 도구
Toggle theme
로그인
사이트 도구
검색
도구
문서 보기
이전 판
PDF로 내보내기
Fold/unfold all
역링크
최근 바뀜
미디어 관리자
사이트맵
로그인
>
최근 바뀜
미디어 관리자
사이트맵
현재 위치:
start
»
wiki
»
gradle
wiki:gradle
이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요.
====== build.gradle error ====== <WRAP left notice 80%> * description : build.gradle error * author : 오션 * email : shlim@repia.com * lastupdate : 2021-01-11 </WRAP> <WRAP clear></WRAP> gradle wrapper 명령어 수행 시 cnanot add task 'wrapper' as a task with that name already exists 오류 발생 시 <code> task wrapper(type:wrapper) { gradleVersion = '4.4' distributionUrl = distributionUrl.replace("bin", "all") } </code> 을 아래와 같이 수정한다. <code> apply plugin: 'java' sourceCompatibility = 1.8 targetCompatibility = 1.8 compileJava.options.encoding = "UTF-8" repositories { mavenCentral() } dependencies { compile 'org.springframework:spring-context:5.0.2.RELEASE' } wrapper { gradleVersion = '4.4' distributionUrl = distributionUrl.replace("bin", "all") } </code> ==== Ref ==== * [[https://stackoverflow.com/questions/53709282/cannot-add-task-wrapper-as-a-task-with-that-name-already-exists|Cannot add task 'wrapper' as a task with that name already exists]] * [[https://velog.io/@hwany/gradle|Gradle이란??]] * [[https://jojoldu.tistory.com/372|Spring Boot Data Jpa 프로젝트에 Querydsl 적용하기]] {{tag> 오션 build.gradle 주레피}}
/volume1/web/dokuwiki/data/pages/wiki/gradle.txt
· 마지막으로 수정됨: 2023/01/21 00:12 저자
dhan
문서 도구
문서 보기
이전 판
역링크
PDF로 내보내기
Fold/unfold all
맨 위로