Advertisement
Guest User

gradle update

a guest
Jan 5th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.68 KB | None | 0 0
  1. version '1.0-SNAPSHOT'
  2.  
  3. apply plugin: 'java'
  4.  
  5. sourceCompatibility = 1.8
  6.  
  7. repositories {
  8.     maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
  9.     mavenCentral()
  10. }
  11.  
  12. dependencies {
  13.     compile group: 'org.deeplearning4j', name: 'deeplearning4j-core', version: '0.9.2-SNAPSHOT'
  14.     compile group: 'org.deeplearning4j', name: 'deeplearning4j-modelimport', version: '0.9.2-SNAPSHOT'
  15. //  also tried:
  16. //  compile group: 'org.nd4j', name: 'nd4j-native', version: '0.9.2-SNAPSHOT'
  17.     compile "org.nd4j:nd4j-native:0.9.2-SNAPSHOT"
  18.     compile "org.nd4j:nd4j-native:0.9.2-SNAPSHOT:macosx-x86_64"
  19.     testCompile group: 'junit', name: 'junit', version: '4.12'
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement