Subversion Repositories SmartDukaan

Rev

Rev 26216 | Rev 27182 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
 
14
 
15
repositories {
16
 
26216 amit.gupta 17
     maven { url "https://repo.maven.apache.org/maven2" }
22425 ashik.ali 18
     mavenLocal()
19
}
20
dependencies {
26859 amit.gupta 21
 	implementation files('libs/ccavutil.jar')
22425 ashik.ali 22
    compile project (':profitmandi-common')
23
    compile group: 'org.hibernate', name: 'hibernate-core', version:'5.2.10.Final'
25163 amit.gupta 24
    compile group: 'org.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'
25
    // https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpa
26
 
22425 ashik.ali 27
    compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version:'1.0.0.Final'
28
    compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version:'5.0.1.Final'
25163 amit.gupta 29
    compile group: 'org.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'
30
    //compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'
23793 tejbeer 31
    compile group: 'org.mongodb', name: 'mongo-java-driver', version:'3.6.0'
22539 ashik.ali 32
    //compile group: 'mysql', name: 'mysql-connector-java', version:'6.0.6'
22540 ashik.ali 33
    compile group: 'mysql', name: 'mysql-connector-java', version:'5.1.44'
22425 ashik.ali 34
    compile group: 'org.springframework', name: 'spring-orm', version:'4.3.5.RELEASE'
35
    compile group: 'com.google.code.gson', name: 'gson', version:'2.8.0'
23716 amit.gupta 36
    compile group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.3.3'
24331 amit.gupta 37
    compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
25163 amit.gupta 38
    compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
39
 
24331 amit.gupta 40
 
22425 ashik.ali 41
}