Subversion Repositories SmartDukaan

Rev

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

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

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

description = """profitmandi-dao"""

sourceCompatibility = 1.8
targetCompatibility = 1.8


repositories {

    maven { url "https://repo.maven.apache.org/maven2" }
    mavenCentral()
    mavenLocal()
}
dependencies {
    implementation files('libs/ccavutil.jar')
    compile project(':profitmandi-common')
    compile "com.razorpay:razorpay-java:1.4.3"
    compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
    compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'
    implementation 'org.hibernate:hibernate-hikaricp:5.2.0.Final'
    compile group: 'org.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'
    // https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa

    compile(group: 'org.springframework.data', name: 'spring-data-redis', version: '2.6.2') {
        exclude(module: 'spring-context-support')
    }

    implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'
    // https://mvnrepository.com/artifact/redis.clients/jedis
    compile(group: 'redis.clients', name: 'jedis', version: '3.7.1') {
        exclude(module: 'jackson-databind')
    }
    compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version: '1.0.0.Final'
    compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version: '5.0.1.Final'
    compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'
    //compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'
    compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.6.0'
    //compile group: 'mysql', name: 'mysql-connector-java', version:'6.0.6'
    compile group: 'com.mysql', name: 'mysql-connector-j', version: '8.0.32'
    compile group: 'org.springframework', name: 'spring-orm', version: '4.3.5.RELEASE'
    compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
    compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.3.3'
    compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
    compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
    implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.6'
// https://mvnrepository.com/artifact/com.google.zxing/core
    implementation group: 'com.google.zxing', name: 'core', version: '3.4.1'
    // https://mvnrepository.com/artifact/com.googlecode.libphonenumber/libphonenumber
    implementation group: 'com.googlecode.libphonenumber', name: 'libphonenumber', version: '8.13.17'
    // RabbitMQ

    api ('org.springframework.amqp:spring-amqp:2.4.14'){
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
        exclude group: 'ch.qos.logback', module: 'logback-classic'
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
    }
    api ('org.springframework.amqp:spring-rabbit:2.4.14'){
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
        exclude group: 'ch.qos.logback', module: 'logback-classic'
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
    }

    /*api('org.springframework.boot:spring-boot-starter-amqp:2.7.5') {
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
        exclude group: 'ch.qos.logback', module: 'logback-classic'
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
    }*/
}