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 | 31 |
Tags
- 프로젝트 시작
- Lambda
- bootstrap
- #정규표현식
- 방법론
- java
- #Microservice
- 분석 작업
- #단축키
- 평가인증
- jv
- docker #docker tutorial
- 2010
- #Gradle Multi project with IntelliJ
- 토익
- 년말
- WebJar
- Spring Boot
- Microservices
- #화면캡쳐 #macOS
- 감사
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