Skip to content

Commit

Permalink
update activiti to 5.13 and excludes jars from dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
limcheekin committed Oct 6, 2013
1 parent 35b1ff4 commit f4508b0
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions grails-app/conf/BuildConfig.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,22 @@ grails.project.dependency.resolution = {
}
dependencies {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.
compile ('org.activiti:activiti-engine:5.12.1') {
excludes 'livetribe-jsr223'
compile ('org.activiti:activiti-engine:5.13') {
excludes 'livetribe-jsr223', 'spring-beans'
}
runtime 'org.activiti:activiti-spring:5.12.1'
runtime ('org.activiti:activiti-spring:5.13') {
excludes 'spring-context', 'spring-jdbc', 'spring-orm', 'slf4j-log4j12', 'commons-dbcp'
}
//runtime 'org.springframework:spring-asm:3.1.4.RELEASE'
runtime 'javax.mail:mail:1.4.1'
test 'org.subethamail:subethasmtp-smtp:1.2'
test 'org.subethamail:subethasmtp-wiser:1.2'
test ('org.subethamail:subethasmtp-smtp:1.2') {
excludes 'commons-logging'
}
test ('org.subethamail:subethasmtp-wiser:1.2') {
excludes 'commons-logging'
}
}
plugins {
build ':release:2.2.1', ':rest-client-builder:1.0.3', {
export = false
}
build ":release:3.0.1"
}
}

0 comments on commit f4508b0

Please sign in to comment.