Subversion Repositories SmartDukaan

Rev

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