Rev 22540 | Rev 23793 | 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 "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:'2.11.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.google.guava', name: 'guava', version:'22.0'}