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