사랑해 마니마니

Spring Data JPA 테스트를 위한 build.gradle 본문

카테고리 없음

Spring Data JPA 테스트를 위한 build.gradle

분리불안증후군 2016. 4. 28. 21:46
group 'io.idstay'
version '1.0-SNAPSHOT'

apply plugin: 'java'
apply plugin: 'idea'

sourceCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
compile 'org.springframework:spring-orm:4.2.5.RELEASE'
compile 'org.springframework:spring-context:4.2.5.RELEASE'
compile 'org.springframework.data:spring-data-jpa:1.10.1.RELEASE'
compile 'org.hibernate:hibernate-entitymanager:4.2.7.Final'
compile 'commons-dbcp:commons-dbcp:1.2.2'
compile 'mysql:mysql-connector-java:5.1.27'

testCompile group: 'junit', name: 'junit', version: '4.11'
}



task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}


Comments