Subversion Repositories SmartDukaan

Rev

Rev 22539 | Rev 22859 | 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'
3
 
4
group = 'com.profitmandi'
5
version = '0.0.1-SNAPSHOT'
6
 
7
description = """profitmandi-dao"""
8
 
9
sourceCompatibility = 1.8
10
targetCompatibility = 1.8
11
 
12
 
13
 
14
repositories {
15
 
16
     maven { url "http://repo.maven.apache.org/maven2" }
17
     mavenLocal()
18
}
19
dependencies {
20
    compile project (':profitmandi-common')
21
    compile group: 'org.hibernate', name: 'hibernate-core', version:'5.2.10.Final'
22
    compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.1-api', version:'1.0.0.Final'
23
    compile group: 'org.hibernate.common', name: 'hibernate-commons-annotations', version:'5.0.1.Final'
24
    compile group: 'org.jboss.logging', name: 'jboss-logging', version:'3.3.0.Final'
25
    compile group: 'org.mongodb', name: 'mongo-java-driver', version:'2.11.0'
22539 ashik.ali 26
    //compile group: 'mysql', name: 'mysql-connector-java', version:'6.0.6'
22540 ashik.ali 27
    compile group: 'mysql', name: 'mysql-connector-java', version:'5.1.44'
22425 ashik.ali 28
    compile group: 'org.springframework', name: 'spring-orm', version:'4.3.5.RELEASE'
29
    compile group: 'com.google.code.gson', name: 'gson', version:'2.8.0'
30
    compile group: 'com.google.guava', name: 'guava', version:'22.0'
31
}