Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
22424 ashik.ali 1
apply plugin: 'java'
2
apply plugin: 'maven'
3
 
4
group = 'com.profitmandi'
5
version = '0.0.1-SNAPSHOT'
6
 
7
description = """profitmandi-common"""
8
 
9
sourceCompatibility = 1.8
10
targetCompatibility = 1.8
11
 
12
 
13
 
14
repositories {
15
 
16
     maven { url "http://repo.maven.apache.org/maven2" }
17
     mavenLocal()
18
}
19
dependencies {
20
    /*compile(group: 'org.apache.thrift', name: 'libthrift', version:'0.7.0') {
21
		exclude(module: 'commons-codec')
22
		exclude(module: 'servlet-api')
23
		exclude(module: 'slf4j-simple')
24
		exclude(module: 'slf4j-api')
25
		exclude(module: 'httpclient')
26
		exclude(module: 'commons-lang')
27
    }*/
28
    compile (project (':ThriftConfig')){
29
    	exclude(module: 'commons-codec')
30
		exclude(module: 'servlet-api')
31
		exclude(module: 'slf4j-simple')
32
		exclude(module: 'slf4j-api')
33
		exclude(module: 'httpclient')
34
		exclude(module: 'commons-lang')
35
    }
36
    //compile project (':ThriftConfig')//) {
37
		//exclude(module: 'slf4j-simple')
38
		//exclude(module: 'slf4j-api')
39
    //}
40
    compile group: 'javax.servlet', name: 'javax.servlet-api', version:'3.1.0'
41
    compile group: 'javax.servlet.jsp', name: 'jsp-api', version:'2.2'
42
    //compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.25'
43
    compile group: 'org.slf4j', name: 'slf4j-simple', version:'1.7.25'
44
    compile(group: 'com.auth0', name: 'java-jwt', version:'3.1.0') {
45
		exclude(module: 'jackson-databind')
46
    }
47
    compile group: 'javax.mail', name: 'mail', version:'1.4'
48
    compile group: 'commons-io', name: 'commons-io', version:'2.5'
49
    compile (group: 'org.apache.httpcomponents', name: 'httpclient', version:'4.5.3'){ 
50
    	exclude(module: 'commons-codec')
51
    }
52
    compile group: 'org.json', name: 'json', version:'20131018'
53
    compile(group: 'com.whalin', name: 'Memcached-Java-Client', version:'3.0.0') {
54
		exclude(module: 'slf4j-api')
55
    }
56
    compile group: 'org.springframework', name: 'spring-webmvc', version:'4.3.5.RELEASE'
57
    compile group: 'org.springframework', name: 'spring-context-support', version:'4.3.5.RELEASE'
58
    compile group: 'org.jsoup', name: 'jsoup', version:'1.8.3'
59
    compile(group: 'com.itextpdf', name: 'itextpdf', version:'5.0.6') {
60
		exclude(module: 'bcprov-jdk14')
61
    }
62
    compile group: 'dom4j', name: 'dom4j', version:'1.6'
63
    compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.8.5'
64
    compile group: 'org.apache.poi', name: 'poi', version:'3.16'
65
    compile group: 'org.apache.poi', name: 'poi-ooxml', version:'3.16'
66
    compile group: 'com.ibm.icu', name: 'icu4j', version:'4.8'
67
    compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.6'
68
    compile group: 'commons-collections', name: 'commons-collections', version: '3.0'
69
    compile (group: 'commons-fileupload', name: 'commons-fileupload', version:'1.3'){
70
    	 exclude(module: 'commons-io')
71
    }
72
    compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
73
    compile group: 'org.apache.tika', name: 'tika-core', version: '1.16'
74
}