davidsoergel / jlibsvm

Efficient training of Support Vector Machines in Java
Other
117 stars 62 forks source link

gradle repo declarations #13

Open sammyjava opened 5 years ago

sammyjava commented 5 years ago

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'
    }
}