Subversion Repositories SmartDukaan

Rev

Rev 35595 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
34860 ranu 1
apply plugin: 'java-library'
22425 ashik.ali 2
apply plugin: 'maven'
22859 ashik.ali 3
apply plugin: "eclipse"
22425 ashik.ali 4
 
5
group = 'com.profitmandi'
6
version = '0.0.1-SNAPSHOT'
7
 
8
description = """profitmandi-dao"""
9
 
10
sourceCompatibility = 1.8
11
targetCompatibility = 1.8
12
 
13
 
30291 amit.gupta 14
repositories {
22425 ashik.ali 15
 
30291 amit.gupta 16
    maven { url "https://repo.maven.apache.org/maven2" }
34860 ranu 17
    mavenCentral()
30291 amit.gupta 18
    mavenLocal()
22425 ashik.ali 19
}
20
dependencies {
30206 amit.gupta 21
    implementation files('libs/ccavutil.jar')
22
    compile project(':profitmandi-common')
36018 amit 23
 
24
    // WebSocket client for Knowlarity live call monitoring
25
    compile 'org.glassfish.tyrus.bundles:tyrus-standalone-client:1.17'
33715 ranu 26
    compile "com.razorpay:razorpay-java:1.4.3"
30206 amit.gupta 27
    compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
28
    compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'
34689 amit.gupta 29
    implementation 'org.hibernate:hibernate-hikaricp:5.2.0.Final'
25163 amit.gupta 30
    compile group: 'org.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'
30216 amit.gupta 31
    // https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
32
 
30291 amit.gupta 33
    compile(group: 'org.springframework.data', name: 'spring-data-redis', version: '2.6.2') {
30206 amit.gupta 34
        exclude(module: 'spring-context-support')
35
    }
36
 
37
    implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'
38
    // https://mvnrepository.com/artifact/redis.clients/jedis
39
    compile(group: 'redis.clients', name: 'jedis', version: '3.7.1') {
40
        exclude(module: 'jackson-databind')
30291 amit.gupta 41
    }
30206 amit.gupta 42
    compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version: '1.0.0.Final'
43
    compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version: '5.0.1.Final'
25163 amit.gupta 44
    compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'
45
    //compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'
30206 amit.gupta 46
    compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.6.0'
22539 ashik.ali 47
    //compile group: 'mysql', name: 'mysql-connector-java', version:'6.0.6'
31708 amit.gupta 48
    compile group: 'com.mysql', name: 'mysql-connector-j', version: '8.0.32'
30206 amit.gupta 49
    compile group: 'org.springframework', name: 'spring-orm', version: '4.3.5.RELEASE'
50
    compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
23716 amit.gupta 51
    compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.3.3'
24331 amit.gupta 52
    compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
25163 amit.gupta 53
    compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
30304 amit.gupta 54
    implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.6'
35595 amit 55
 
56
    // Test dependencies
57
    testImplementation 'junit:junit:4.13.2'
58
    testImplementation 'org.mockito:mockito-core:3.12.4'
59
    testImplementation 'org.springframework:spring-test:4.3.6.RELEASE'
30398 amit.gupta 60
// https://mvnrepository.com/artifact/com.google.zxing/core
61
    implementation group: 'com.google.zxing', name: 'core', version: '3.4.1'
33258 ranu 62
    // https://mvnrepository.com/artifact/com.googlecode.libphonenumber/libphonenumber
63
    implementation group: 'com.googlecode.libphonenumber', name: 'libphonenumber', version: '8.13.17'
34860 ranu 64
    // RabbitMQ
30291 amit.gupta 65
 
35459 amit 66
    api ('org.springframework.amqp:spring-amqp:2.4.14'){
34860 ranu 67
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
68
        exclude group: 'ch.qos.logback', module: 'logback-classic'
69
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
70
    }
35459 amit 71
    api ('org.springframework.amqp:spring-rabbit:2.4.14'){
34860 ranu 72
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
73
        exclude group: 'ch.qos.logback', module: 'logback-classic'
74
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
75
    }
30291 amit.gupta 76
 
34860 ranu 77
    /*api('org.springframework.boot:spring-boot-starter-amqp:2.7.5') {
78
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
79
        exclude group: 'ch.qos.logback', module: 'logback-classic'
80
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
81
    }*/
22425 ashik.ali 82
}
34860 ranu 83