Subversion Repositories SmartDukaan

Rev

Rev 34860 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34860 Rev 35458
Line 15... Line 15...
15
 
15
 
16
    maven { url "https://repo.maven.apache.org/maven2" }
16
    maven { url "https://repo.maven.apache.org/maven2" }
17
    mavenCentral()
17
    mavenCentral()
18
    mavenLocal()
18
    mavenLocal()
19
}
19
}
-
 
20
 
-
 
21
test {
-
 
22
    enabled = true
-
 
23
}
-
 
24
 
20
dependencies {
25
dependencies {
-
 
26
    // Test dependencies
-
 
27
    testImplementation 'junit:junit:4.13.2'
-
 
28
    testImplementation 'org.mockito:mockito-core:3.12.4'
-
 
29
 
21
    implementation files('libs/ccavutil.jar')
30
    implementation files('libs/ccavutil.jar')
22
    compile project(':profitmandi-common')
31
    compile project(':profitmandi-common')
23
    compile "com.razorpay:razorpay-java:1.4.3"
32
    compile "com.razorpay:razorpay-java:1.4.3"
24
    compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
33
    compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
25
    compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'
34
    compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'
Line 53... Line 62...
53
    implementation group: 'com.google.zxing', name: 'core', version: '3.4.1'
62
    implementation group: 'com.google.zxing', name: 'core', version: '3.4.1'
54
    // https://mvnrepository.com/artifact/com.googlecode.libphonenumber/libphonenumber
63
    // https://mvnrepository.com/artifact/com.googlecode.libphonenumber/libphonenumber
55
    implementation group: 'com.googlecode.libphonenumber', name: 'libphonenumber', version: '8.13.17'
64
    implementation group: 'com.googlecode.libphonenumber', name: 'libphonenumber', version: '8.13.17'
56
    // RabbitMQ
65
    // RabbitMQ
57
 
66
 
58
    api ('org.springframework.amqp:spring-amqp:2.4.14'){
67
    api('org.springframework.amqp:spring-amqp:2.4.14') {
59
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
68
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
60
        exclude group: 'ch.qos.logback', module: 'logback-classic'
69
        exclude group: 'ch.qos.logback', module: 'logback-classic'
61
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
70
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
62
    }
71
    }
63
    api ('org.springframework.amqp:spring-rabbit:2.4.14'){
72
    api('org.springframework.amqp:spring-rabbit:2.4.14') {
64
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
73
        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
65
        exclude group: 'ch.qos.logback', module: 'logback-classic'
74
        exclude group: 'ch.qos.logback', module: 'logback-classic'
66
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
75
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
67
    }
76
    }
68
 
77