Subversion Repositories SmartDukaan

Rev

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

Rev 28378 Rev 30206
Line 16... Line 16...
16
        
16
        
17
     maven { url "https://repo.maven.apache.org/maven2" }
17
     maven { url "https://repo.maven.apache.org/maven2" }
18
     mavenLocal()
18
     mavenLocal()
19
}
19
}
20
dependencies {
20
dependencies {
21
 	implementation files('libs/ccavutil.jar')
21
    implementation files('libs/ccavutil.jar')
22
    compile project (':profitmandi-common')
22
    compile project(':profitmandi-common')
23
    compile "com.razorpay:razorpay-java:1.3.8"
23
    compile "com.razorpay:razorpay-java:1.3.8"
24
    compile group: 'org.apache.velocity',  name: 'velocity', version: '1.7'
24
    compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
25
   
-
 
26
    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'
27
    compile group: 'org.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'
26
    compile group: 'org.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'
-
 
27
    compile(group: 'org.springframework.data', name: 'spring-data-redis', version: '2.6.2') {
-
 
28
        exclude(module: 'spring-context-support')
-
 
29
    }
-
 
30
 
-
 
31
    implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'
28
    // https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
32
    // https://mvnrepository.com/artifact/redis.clients/jedis
-
 
33
    compile(group: 'redis.clients', name: 'jedis', version: '3.7.1') {
-
 
34
        exclude(module: 'jackson-databind')
29
    
35
    }
-
 
36
 
-
 
37
 
30
    compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version:'1.0.0.Final'
38
    compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version: '1.0.0.Final'
31
    compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version:'5.0.1.Final'
39
    compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version: '5.0.1.Final'
32
    compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'
40
    compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'
33
    //compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'
41
    //compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'
34
    compile group: 'org.mongodb', name: 'mongo-java-driver', version:'3.6.0'
42
    compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.6.0'
35
    //compile group: 'mysql', name: 'mysql-connector-java', version:'6.0.6'
43
    //compile group: 'mysql', name: 'mysql-connector-java', version:'6.0.6'
36
    compile group: 'mysql', name: 'mysql-connector-java', version:'5.1.44'
44
    compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.44'
37
    compile group: 'org.springframework', name: 'spring-orm', version:'4.3.5.RELEASE'
45
    compile group: 'org.springframework', name: 'spring-orm', version: '4.3.5.RELEASE'
38
    compile group: 'com.google.code.gson', name: 'gson', version:'2.8.0'
46
    compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
39
    compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.3.3'
47
    compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.3.3'
40
    compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
48
    compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
41
    compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
49
    compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
42
   
50
   
43
    
51