Skip to content

Instantly share code, notes, and snippets.

@maxschremser
Created May 4, 2016 21:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxschremser/b8cd8608dbaf9d4bd49c028d8583bbbe to your computer and use it in GitHub Desktop.
Save maxschremser/b8cd8608dbaf9d4bd49c028d8583bbbe to your computer and use it in GitHub Desktop.
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'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment