Skip to main content

Troubleshooting

Less than 1 minuteGradleTroubleshootinggradlegroovyideaintellij-ideaintellijinsecure-protocolshttps

Troubleshooting 관련


Repository SSL not applied

사용한 Gradle 버전: 7.2

repositories {
    maven {
        url repo.ons
    }
}

리포 적용 했을 때 Gradle Sync 에 실패

Using insecure protocols with respositories, without explicit opt-in, is unsupported, Switch maven repository ... [생략]

아래와 같이 처리 allowInsecureProtocol true 플래그 추가하여 처리

repositories {
    maven {
        url repo.ons
        allowInsecureProtocol true
    }
}

이찬희 (MarkiiimarK)
Never Stop Learning.