Created
May 4, 2016 21:43
-
-
Save maxschremser/b8cd8608dbaf9d4bd49c028d8583bbbe to your computer and use it in GitHub Desktop.
Revisions
-
maxschremser created this gist
May 4, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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' } }