Skip to content

Instantly share code, notes, and snippets.

@maxschremser
Created May 4, 2016 21:43
Show Gist options
  • Save maxschremser/b8cd8608dbaf9d4bd49c028d8583bbbe to your computer and use it in GitHub Desktop.
Save maxschremser/b8cd8608dbaf9d4bd49c028d8583bbbe to your computer and use it in GitHub Desktop.

Revisions

  1. maxschremser created this gist May 4, 2016.
    23 changes: 23 additions & 0 deletions build.gradle
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    allprojects {
    group 'com.schremser'
    version '1.0'

    apply plugin: 'java'
    sourceCompatibility = 1.8

    repositories {
    mavenCentral()
    }
    }

    subprojects {
    dependencies {
    compile 'ch.qos.logback:logback-classic:1.1.3'
    compile files('../lib/jms.jar', '../lib/fscontext.jar', '../lib/imq.jar')
    compile 'org.springframework.integration:spring-integration-jms:4.2.1.RELEASE'
    compile 'org.springframework.boot:spring-boot-actuator:1.2.7.RELEASE'

    testCompile group: 'junit', name: 'junit', version: '4.11'
    }

    }