Skip to content

Instantly share code, notes, and snippets.

@emag
Created December 23, 2013 11:36
Show Gist options
  • Select an option

  • Save emag/8095651 to your computer and use it in GitHub Desktop.

Select an option

Save emag/8095651 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M6")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'gs-messaging-jms'
version = '0.1.0'
}
repositories {
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter:0.5.0.M6")
compile("org.springframework:spring-jms:4.0.0.RC1")
compile("org.apache.activemq:activemq-core:5.4.0")
compile("org.apache.geronimo.specs:geronimo-jms_1.1_spec:1.1")
testCompile("junit:junit:4.11")
}
task wrapper(type: Wrapper) {
gradleVersion = '1.8'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment