ari / gradle-release-plugin

A modern release plugin for gradle
Apache License 2.0
51 stars 26 forks source link

Unresolved SqlJet dependency #20

Closed mb720 closed 10 years ago

mb720 commented 10 years ago

Hi,

Could not resolve all dependencies for configuration ':classpath'.
   > Could not find org.tmatesoft.sqljet:sqljet:1.1.8-SNAPSHOT.
     Required by:
         :GradleFx:unspecified > au.com.ish.gradle:release:2.2.2 > org.tmatesoft
.svnkit:svnkit:1.8.0

This is what I get after invoking gradle tasks when I have added this to my build.gradle:

buildscript {
  repositories {
    mavenCentral()
    maven {
      url 'http://maven.tmatesoft.com/content/repositories/releases/'
    }
  }

  dependencies {
    classpath 'au.com.ish.gradle:release:2.2.2'
  }
}

apply plugin: 'release'
glennmcallister commented 10 years ago

Just hit this. Any plans on updating the dependencies?

ari commented 10 years ago

Yes, already updated in github but not yet released. In the meantime I suggest using the older release against svnkit 1.7 or making the change in your local copy.

greenscar commented 8 years ago

This should not be closed. I have to enable SNAPSHOT dependencies in order to have this work.

pkovalenko commented 8 years ago

I have almost the same issue

> Could not resolve all dependencies for configuration ':app:classpath'.
   > Could not resolve org.tmatesoft.svnkit:svnkit:1.8.0.
     Required by:
         Android_Release:app:1.0 > au.com.ish.gradle:release:2.2.2
      > Could not resolve org.tmatesoft.svnkit:svnkit:1.8.0.
         > Could not get resource 'http://maven.tmatesoft.com/content/repositories/releases/org/tmatesoft/svnkit/svnkit/1.8.0/svnkit-1.8.0.pom'.
            > Could not GET 'http://maven.tmatesoft.com/content/repositories/releases/org/tmatesoft/svnkit/svnkit/1.8.0/svnkit-1.8.0.pom'.
               > sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

How I can resolve this? Thank you