Subversion Repositories SmartDukaan

Rev

Rev 35458 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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