| 22425 |
ashik.ali |
1 |
apply plugin: 'java'
|
|
|
2 |
apply plugin: 'maven'
|
| 22859 |
ashik.ali |
3 |
apply plugin: "eclipse"
|
| 22425 |
ashik.ali |
4 |
|
|
|
5 |
group = 'com.profitmandi'
|
|
|
6 |
version = '0.0.1-SNAPSHOT'
|
|
|
7 |
|
|
|
8 |
description = """profitmandi-dao"""
|
|
|
9 |
|
|
|
10 |
sourceCompatibility = 1.8
|
|
|
11 |
targetCompatibility = 1.8
|
|
|
12 |
|
|
|
13 |
|
| 30291 |
amit.gupta |
14 |
repositories {
|
| 22425 |
ashik.ali |
15 |
|
| 30291 |
amit.gupta |
16 |
maven { url "https://repo.maven.apache.org/maven2" }
|
|
|
17 |
mavenLocal()
|
| 22425 |
ashik.ali |
18 |
}
|
|
|
19 |
dependencies {
|
| 30206 |
amit.gupta |
20 |
implementation files('libs/ccavutil.jar')
|
|
|
21 |
compile project(':profitmandi-common')
|
| 27182 |
tejbeer |
22 |
compile "com.razorpay:razorpay-java:1.3.8"
|
| 30206 |
amit.gupta |
23 |
compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
|
|
|
24 |
compile group: 'org.hibernate', name: 'hibernate-core', version: '5.2.10.Final'
|
| 25163 |
amit.gupta |
25 |
compile group: 'org.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'
|
| 30216 |
amit.gupta |
26 |
// https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
|
|
|
27 |
|
| 30291 |
amit.gupta |
28 |
compile(group: 'org.springframework.data', name: 'spring-data-redis', version: '2.6.2') {
|
| 30206 |
amit.gupta |
29 |
exclude(module: 'spring-context-support')
|
|
|
30 |
}
|
|
|
31 |
|
|
|
32 |
implementation group: 'org.apache.commons', name: 'commons-pool2', version: '2.11.1'
|
|
|
33 |
// https://mvnrepository.com/artifact/redis.clients/jedis
|
|
|
34 |
compile(group: 'redis.clients', name: 'jedis', version: '3.7.1') {
|
|
|
35 |
exclude(module: 'jackson-databind')
|
| 30291 |
amit.gupta |
36 |
}
|
| 30206 |
amit.gupta |
37 |
compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version: '1.0.0.Final'
|
|
|
38 |
compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version: '5.0.1.Final'
|
| 25163 |
amit.gupta |
39 |
compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'
|
|
|
40 |
//compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'
|
| 30206 |
amit.gupta |
41 |
compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.6.0'
|
| 22539 |
ashik.ali |
42 |
//compile group: 'mysql', name: 'mysql-connector-java', version:'6.0.6'
|
| 30206 |
amit.gupta |
43 |
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.44'
|
|
|
44 |
compile group: 'org.springframework', name: 'spring-orm', version: '4.3.5.RELEASE'
|
|
|
45 |
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
|
| 23716 |
amit.gupta |
46 |
compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.3.3'
|
| 24331 |
amit.gupta |
47 |
compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
|
| 25163 |
amit.gupta |
48 |
compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
|
| 30304 |
amit.gupta |
49 |
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.6'
|
| 30291 |
amit.gupta |
50 |
|
|
|
51 |
|
| 22425 |
ashik.ali |
52 |
}
|