사용자 도구

사이트 도구


wiki:gradle

문서의 이전 판입니다!


build.gradle error

  • description : build.gradle error
  • author : 오션
  • email : shlim@repia.com
  • lastupdate : 2021-01-11

gradle wrapper 명령어 수행 시 cnanot add task 'wrapper' as a task with that name already exists 오류 발생 시

task wrapper(type:wrapper) {
  gradleVersion = '4.4'
  distributionUrl = distributionUrl.replace("bin", "all")
}

을 아래와 같이 수정한다.

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")
}

Ref

/volume1/web/dokuwiki/data/attic/wiki/gradle.1673603052.txt.gz · 마지막으로 수정됨: 2023/01/13 18:44 저자 127.0.0.1