Skip to content

A gradle plugin to disable SSL certificate validation

Notifications You must be signed in to change notification settings

mystery4f/gradle-trust-all

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Gradle "Trust All" Plugin

NOTE:


This fork is because I could not raise PR to original repo to correct the gradle build issue which was reported in their issues section.

Use this repo to generate jar for this project.

Thanks, SL



This plugin was born out of necessity for a quick-and-dirty way to use a Maven repository over HTTPS with a self-signed certificate.

When working with such a repository in gradle you may get an error:

Error transferring file: sun.security.validator.ValidatorException:
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException:
unable to find valid certification path to requested target

Usual Java way to handle such scenario would be to download site certificate, import it into a keystore and use that keystore via the -Djavax.net.ssl.trustStore=... JVM options.

Sometimes you just need an easier way -- disable certificate validation altogether! There are many reasons not to do that, one of them being that this approach makes connections vulnerable to man-in-the-middle attacks.

Consider this code a proof-of-concept and accept full responsibility that by using it you're ultimately making an informed bad decision.

Origin

The code to disable certificate validation come from this StackOverflow answer, although there are many similar code snippets floating around the web.

Using "Trust All" Plugin

To use gradle-trust-all, build the jar file and include it in your project:

$ git clone https://github.com/arteme/gradle-trust-all.git
$ cd gradle-trust-all
$ gradle build
$ cp build/libs/gradle-trust-all.jar /path/to/your/project/gradle/folder/

Then in your project's build.gradle file add it as a buildscript dependency and activate the plugin:

buildscript {
    dependencies {
        classpath files('gradle/gradle-trust-all.jar')
    }
}

apply plugin: 'trust-all'

That is it. Now certificate validation in gradle is disabled.

About

A gradle plugin to disable SSL certificate validation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Groovy 100.0%