Rev 22530 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
apply plugin: 'java'apply plugin: 'maven'apply plugin: 'war'group = 'com.profitmandi'version = '0.0.1-SNAPSHOT'description = """profitmandi-fofo"""sourceCompatibility = 1.8targetCompatibility = 1.8repositories {maven { url "http://repo.maven.apache.org/maven2" }mavenLocal()}dependencies {compile project (':profitmandi-common')compile project (':profitmandi-dao')compile (group: 'org.apache.velocity', name: 'velocity', version:'1.7'){exclude(module: 'commons-logging')exclude(module: 'commons-digester')}compile (group: 'org.apache.velocity', name: 'velocity-tools', version:'2.0'){exclude(module: 'commons-logging')exclude(module: 'commons-digester')//exclude(module: 'commons-collections')exclude(module: 'dom4j')exclude(module: 'antlr')exclude(module: 'velocity')}}