Rev 25163 | Rev 27182 | 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 "https://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.springframework.data', name: 'spring-data-solr', version: '4.0.8.RELEASE'// https://mvnrepository.com/artifact/org.springframework.data/spring-data-jpacompile 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.springframework.data', name: 'spring-data-jpa', version: '2.0.0.RELEASE'//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'compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'}