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