Subversion Repositories SmartDukaan

Rev

Rev 23793 | Rev 26216 | 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.8
targetCompatibility = 1.8



repositories {
        
     maven { url "http://repo.maven.apache.org/maven2" }
     mavenLocal()
}
dependencies {
    compile project (':profitmandi-common')
    compile group: 'org.hibernate', name: 'hibernate-core', version:'5.2.10.Final'
    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.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: 'mysql', name: 'mysql-connector-java', version:'5.1.44'
    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'
    
}