jlibsvm icon indicating copy to clipboard operation
jlibsvm copied to clipboard

gradle repo declarations

Open sammyjava opened this issue 5 years ago • 0 comments

Heya, thanks for doing the refactor work on libsvm! It'll come in handy for my project. I thought I'd post up the gradle equivalent of your pom repo declarations for others' use -- including your thirdparty repo which was required.

dependencies {
    // http://dev.davidsoergel.com/nexus/content/repositories/releases
    compile group: 'edu.berkeley.compbio', name: 'jlibsvm', version: '0.911'
}
repositories {
    jcenter()
    mavenCentral()
    maven {
          url 'http://davidsoergel.com/nexus/content/repositories/releases'
    }
    maven {
          url 'http://davidsoergel.com/nexus/content/repositories/thirdparty'
    }
}

sammyjava avatar Mar 13 '19 17:03 sammyjava