Subversion Repositories SmartDukaan

Rev

Rev 22530 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
22426 ashik.ali 1
apply plugin: 'java'
2
apply plugin: 'maven'
3
apply plugin: 'war'
4
 
5
group = 'com.profitmandi'
6
version = '0.0.1-SNAPSHOT'
7
 
8
description = """profitmandi-fofo"""
9
 
10
sourceCompatibility = 1.8
11
targetCompatibility = 1.8
12
 
13
 
14
 
15
repositories {
16
 
17
     maven { url "http://repo.maven.apache.org/maven2" }
18
     mavenLocal()
19
}
20
dependencies {
21
    compile project (':profitmandi-common')
22
    compile project (':profitmandi-dao')
23
    compile (group: 'org.apache.velocity', name: 'velocity', version:'1.7'){ 
24
    	exclude(module: 'commons-logging')
25
    	exclude(module: 'commons-digester')
26
    }
27
 
28
    compile (group: 'org.apache.velocity', name: 'velocity-tools', version:'2.0'){ 
29
    	exclude(module: 'commons-logging')
30
    	exclude(module: 'commons-digester')
31
    	//exclude(module: 'commons-collections')
32
    	exclude(module: 'dom4j')
33
    	exclude(module: 'antlr')
34
    	exclude(module: 'velocity')
35
 
36
    }
37
}