Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 감사
- Microservices
- docker #docker tutorial
- bootstrap
- Spring Boot
- #Gradle Multi project with IntelliJ
- 토익
- WebJar
- java
- #화면캡쳐 #macOS
- Lambda
- 프로젝트 시작
- 2010
- jv
- 방법론
- #Microservice
- 평가인증
- #단축키
- 년말
- 분석 작업
- #정규표현식
Archives
- Today
- Total
사랑해 마니마니
Spring Data JPA 테스트를 위한 build.gradle 본문
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