14 lines
		
	
	
		
			435 B
		
	
	
	
		
			Groovy
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			435 B
		
	
	
	
		
			Groovy
		
	
	
	
plugins {
 | 
						|
	id "org.springframework.boot.starter"
 | 
						|
}
 | 
						|
 | 
						|
description = "Starter for using Spring Data JPA with Hibernate"
 | 
						|
 | 
						|
dependencies {
 | 
						|
	api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-aop"))
 | 
						|
	api(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-jdbc"))
 | 
						|
	api("org.hibernate.orm:hibernate-core")
 | 
						|
	api("org.springframework.data:spring-data-jpa")
 | 
						|
	api("org.springframework:spring-aspects")
 | 
						|
}
 |