Skip to content
Snippets Groups Projects
Select Git revision
  • c9dbdf5c76128f9ae014a0d48f79c716f08db46d
  • develop default protected
  • feature/tube-grasp-eef
  • master
  • simulated_grasping
  • simulation
  • 0.6.0
  • 0.5.0
  • 0.4.1
  • 0.4.0
  • 0.3.0
  • 0.2.2
  • 0.2.1
  • 0.2.0
  • 0.1.2
  • 0.1.1
  • 0.1.0
17 results

Jenkinsfile

Blame
  • build.gradle 966 B
    repositories {
        mavenCentral()
    }
    
    sourceCompatibility = 1.8
    
    apply plugin: 'java'
    apply plugin: 'application'
    
    dependencies {
        compile project(':eraser-base')
        compile project(':feedbackloop.api')
        compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.8'
        compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.2'
        compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.2'
        testCompile group: 'junit', name: 'junit', version: '4.12'
        testCompile group: 'org.hamcrest', name: 'hamcrest-junit', version: '2.0.0.0'
        compile group: 'org.encog', name: 'encog-core', version: '3.4'
    }
    
    run {
        mainClassName = 'de.tudresden.inf.st.eraser.feedbackloop.learner.Main'
        standardInput = System.in
        if (project.hasProperty("appArgs")) {
            args Eval.me(appArgs)
        }
    }
    
    sourceSets {
        main {
            java {
                srcDir 'src/main/java'
            }
        }
    }