Rev 33715 | Rev 34860 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
apply plugin: 'java'apply plugin: 'maven'apply plugin: "eclipse"group = 'com.profitmandi'version = '0.0.1-SNAPSHOT'description = """profitmandi-dao"""sourceCompatibility = 1.8targetCompatibility = 1.8repositories {maven { url "https://repo.maven.apache.org/maven2" }mavenLocal()}dependencies {implementation files('libs/ccavutil.jar')compile project(':profitmandi-common')compile "com.razorpay:razorpay-java:1.4.3"compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'implementation 'org.hibernate:hibernate-hikaricp:5.2.0.Final'compile group: 'org.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'// https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpacompile(group: 'org.springframework.data', name: 'spring-data-redis', version: '2.6.2') {exclude(module: 'spring-context-support')}implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'// https://mvnrepository.com/artifact/redis.clients/jediscompile(group: 'redis.clients', name: 'jedis', version: '3.7.1') {exclude(module: 'jackson-databind')}compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version: '1.0.0.Final'compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version: '5.0.1.Final'compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'//compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.6.0'//compile group: 'mysql', name: 'mysql-connector-java', version:'6.0.6'compile group: 'com.mysql', name: 'mysql-connector-j', version: '8.0.32'compile group: 'org.springframework', name: 'spring-orm', version: '4.3.5.RELEASE'compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.3.3'compile group: 'com.google.guava', name: 'guava', version: '11.0.2'compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.6'// https://mvnrepository.com/artifact/com.google.zxing/coreimplementation group: 'com.google.zxing', name: 'core', version: '3.4.1'// https://mvnrepository.com/artifact/com.googlecode.libphonenumber/libphonenumberimplementation group: 'com.googlecode.libphonenumber', name: 'libphonenumber', version: '8.13.17'}