Subversion Repositories SmartDukaan

Rev

Rev 22535 | Rev 22537 | Go to most recent revision | Details | Compare with Previous | 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
}
22535 ashik.ali 19
configurations{
20
  provided
21
  compile.extendsFrom provided
22
}
23
 
24
sourceSets {
25
  main {
26
    compileClasspath += configurations.provided
27
  }
28
  test {
29
    compileClasspath += configurations.provided
30
  }
31
}
32
 
22424 ashik.ali 33
dependencies {
22536 ashik.ali 34
	provided group: 'javax.servlet', name: 'javax.servlet-api', version: '3.0.1'
35
 
36
 
22424 ashik.ali 37
    /*compile(group: 'org.apache.thrift', name: 'libthrift', version:'0.7.0') {
38
		exclude(module: 'commons-codec')
39
		exclude(module: 'servlet-api')
40
		exclude(module: 'slf4j-simple')
41
		exclude(module: 'slf4j-api')
42
		exclude(module: 'httpclient')
43
		exclude(module: 'commons-lang')
44
    }*/
45
    compile (project (':ThriftConfig')){
46
    	exclude(module: 'commons-codec')
47
		exclude(module: 'servlet-api')
48
		exclude(module: 'slf4j-simple')
49
		exclude(module: 'slf4j-api')
50
		exclude(module: 'httpclient')
51
		exclude(module: 'commons-lang')
52
    }
53
    //compile project (':ThriftConfig')//) {
54
		//exclude(module: 'slf4j-simple')
55
		//exclude(module: 'slf4j-api')
56
    //}
22535 ashik.ali 57
 
22424 ashik.ali 58
    compile group: 'javax.servlet.jsp', name: 'jsp-api', version:'2.2'
59
    //compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.25'
60
    compile group: 'org.slf4j', name: 'slf4j-simple', version:'1.7.25'
61
    compile(group: 'com.auth0', name: 'java-jwt', version:'3.1.0') {
62
		exclude(module: 'jackson-databind')
63
    }
64
    compile group: 'javax.mail', name: 'mail', version:'1.4'
65
    compile group: 'commons-io', name: 'commons-io', version:'2.5'
66
    compile (group: 'org.apache.httpcomponents', name: 'httpclient', version:'4.5.3'){ 
67
    	exclude(module: 'commons-codec')
68
    }
69
    compile group: 'org.json', name: 'json', version:'20131018'
70
    compile(group: 'com.whalin', name: 'Memcached-Java-Client', version:'3.0.0') {
71
		exclude(module: 'slf4j-api')
72
    }
73
    compile group: 'org.springframework', name: 'spring-webmvc', version:'4.3.5.RELEASE'
74
    compile group: 'org.springframework', name: 'spring-context-support', version:'4.3.5.RELEASE'
75
    compile group: 'org.jsoup', name: 'jsoup', version:'1.8.3'
76
    compile(group: 'com.itextpdf', name: 'itextpdf', version:'5.0.6') {
77
		exclude(module: 'bcprov-jdk14')
78
    }
79
    compile group: 'dom4j', name: 'dom4j', version:'1.6'
80
    compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.8.5'
81
    compile group: 'org.apache.poi', name: 'poi', version:'3.16'
82
    compile group: 'org.apache.poi', name: 'poi-ooxml', version:'3.16'
83
    compile group: 'com.ibm.icu', name: 'icu4j', version:'4.8'
84
    compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.6'
85
    compile group: 'commons-collections', name: 'commons-collections', version: '3.0'
86
    compile (group: 'commons-fileupload', name: 'commons-fileupload', version:'1.3'){
87
    	 exclude(module: 'commons-io')
88
    }
89
    compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
90
    compile group: 'org.apache.tika', name: 'tika-core', version: '1.16'
22529 ashik.ali 91
    compile group: 'org.apache.solr', name: 'solr-solrj', version: '6.6.0'
22424 ashik.ali 92
}