Subversion Repositories SmartDukaan

Rev

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

Rev 30216 Rev 30291
Line 9... Line 9...
9
 
9
 
10
sourceCompatibility = 1.8
10
sourceCompatibility = 1.8
11
targetCompatibility = 1.8
11
targetCompatibility = 1.8
12
 
12
 
13
 
13
 
14
 
-
 
15
repositories {
14
repositories {
16
        
15
 
17
     maven { url "https://repo.maven.apache.org/maven2" }
16
    maven { url "https://repo.maven.apache.org/maven2" }
18
     mavenLocal()
17
    mavenLocal()
19
}
18
}
20
dependencies {
19
dependencies {
21
    implementation files('libs/ccavutil.jar')
20
    implementation files('libs/ccavutil.jar')
22
    compile project(':profitmandi-common')
21
    compile project(':profitmandi-common')
23
    compile "com.razorpay:razorpay-java:1.3.8"
22
    compile "com.razorpay:razorpay-java:1.3.8"
24
    compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
23
    compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
25
    compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'
24
    compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'
26
    compile group: 'org.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'
25
    compile group: 'org.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'
27
    // https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
26
    // https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
28
 
27
 
29
    /*compile(group: 'org.springframework.data', name: 'spring-data-redis', version: '2.6.2') {
28
    compile(group: 'org.springframework.data', name: 'spring-data-redis', version: '2.6.2') {
30
        exclude(module: 'spring-context-support')
29
        exclude(module: 'spring-context-support')
31
    }
30
    }
32
 
31
 
33
    implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'
32
    implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'
34
    // https://mvnrepository.com/artifact/redis.clients/jedis
33
    // https://mvnrepository.com/artifact/redis.clients/jedis
35
    compile(group: 'redis.clients', name: 'jedis', version: '3.7.1') {
34
    compile(group: 'redis.clients', name: 'jedis', version: '3.7.1') {
36
        exclude(module: 'jackson-databind')
35
        exclude(module: 'jackson-databind')
37
    }*/
36
    }
38
    compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version: '1.0.0.Final'
37
    compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version: '1.0.0.Final'
39
    compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version: '5.0.1.Final'
38
    compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version: '5.0.1.Final'
40
    compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'
39
    compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'
41
    //compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'
40
    //compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'
42
    compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.6.0'
41
    compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.6.0'
Line 45... Line 44...
45
    compile group: 'org.springframework', name: 'spring-orm', version: '4.3.5.RELEASE'
44
    compile group: 'org.springframework', name: 'spring-orm', version: '4.3.5.RELEASE'
46
    compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
45
    compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
47
    compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.3.3'
46
    compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.3.3'
48
    compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
47
    compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
49
    compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
48
    compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
-
 
49
    compile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2'
50
   
50
 
51
    
51
 
52
}
52
}