Subversion Repositories SmartDukaan

Rev

Rev 30207 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

apply plugin: 'java'
apply plugin: 'maven'
apply plugin: "eclipse"

group = 'com.profitmandi'
version = '0.0.1-SNAPSHOT'

description = """profitmandi-common"""

sourceCompatibility = 1.8
targetCompatibility = 1.8


repositories {
        
     maven { url "https://repo.maven.apache.org/maven2" }
     mavenLocal()
}

dependencies {
    /*compile(group: 'org.apache.thrift', name: 'libthrift', version:'0.7.0') {
                exclude(module: 'commons-codec')
                exclude(module: 'servlet-api')
                exclude(module: 'slf4j-log4j12')
                exclude(module: 'slf4j-api')
                exclude(module: 'httpclient')
                exclude(module: 'commons-lang')
    }*/
    compile (project (':ThriftConfig')){
        exclude(module: 'commons-codec')
                exclude(module: 'servlet-api')
                exclude(module: 'slf4j-log4j12')
                exclude(module: 'slf4j-simple')
                exclude(module: 'slf4j-api')
                exclude(module: 'httpclient')
                exclude(module: 'commons-lang')
                exclude(module:'log4j-core')
                exclude(module:'log4j-api')
    }
    //compile project (':ThriftConfig')//) {
                //exclude(module: 'slf4j-simple')
                //exclude(module: 'slf4j-api')
    //}
    compile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'
    compile group: 'javax.servlet.jsp', name: 'jsp-api', version:'2.2'
    compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.5'
    compile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.5'
    compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.16.0'
   // compile group: 'log4j', name: 'apache-log4j-extras', version: '1.2.17'
   compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.8.2'
    compile(group: 'com.auth0', name: 'java-jwt', version:'3.1.0') {
                exclude(module: 'jackson-databind')
    }
    compile group: 'javax.mail', name: 'mail', version:'1.4'
    compile group: 'commons-io', name: 'commons-io', version:'2.5'
    compile (group: 'org.apache.httpcomponents', name: 'httpclient', version:'4.5.3'){ 
        exclude(module: 'commons-codec')
    }
    compile group: 'org.json', name: 'json', version:'20131018'
    compile(group: 'com.whalin', name: 'Memcached-Java-Client', version:'3.0.0') {
                exclude(module: 'slf4j-api')
    }
    compile group: 'org.springframework', name: 'spring-webmvc', version:'4.3.6.RELEASE'
    compile group: 'org.springframework', name: 'spring-context-support', version:'4.3.6.RELEASE'
    
    compile group: 'org.springframework.security', name: 'spring-security-web', version:'4.2.13.RELEASE'
    compile group: 'org.springframework.security', name: 'spring-security-config', version:'4.2.13.RELEASE'
    
    compile group: 'org.springframework', name: 'spring-test', version: '4.3.6.RELEASE'
    compile group: 'org.jsoup', name: 'jsoup', version:'1.8.3'
    compile(group: 'com.itextpdf', name: 'itextpdf', version:'5.5.6') {
                exclude(module: 'bcprov-jdk14')
    }
    compile group: 'org.mongodb', name: 'mongo-java-driver', version:'3.6.0'
    compile group: 'dom4j', name: 'dom4j', version:'1.6'
    compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.5'
    compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version:'2.6.3'
    compile group: 'org.apache.poi', name: 'poi', version:'3.16'
    compile group: 'org.apache.poi', name: 'poi-ooxml', version:'3.16'
    compile group: 'com.ibm.icu', name: 'icu4j', version:'4.8'
    compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.6'
    compile group: 'com.google.code.gson', name: 'gson', version:'2.8.0'
    compile group: 'commons-collections', name: 'commons-collections', version: '3.0'
    compile (group: 'commons-fileupload', name: 'commons-fileupload', version:'1.3'){
         exclude(module: 'commons-io')
    }
    compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
    compile group: 'org.apache.tika', name: 'tika-core', version: '1.16'
    compile group: 'org.apache.solr', name: 'solr-solrj', version: '6.6.0'
    compile group: 'org.apache.commons', name: 'commons-csv', version: '1.5'
    implementation 'org.jsoup:jsoup:1.11.3'
    implementation 'com.squareup.okhttp3:okhttp:4.3.1'
    implementation 'com.squareup.okio:okio:2.4.0'
    implementation 'com.squareup.okhttp3:logging-interceptor:4.10.0-RC1'
        implementation 'org.threeten:threetenbp:1.3.1'


}