forked from Hithomelabs/CFTunnels
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| plugins {
 | |
| 	id 'java'
 | |
| 	id 'org.springframework.boot' version '3.4.5'
 | |
| 	id 'io.spring.dependency-management' version '1.1.7'
 | |
| }
 | |
| 
 | |
| group = 'com.hithomelabs'
 | |
| version = '0.0.1-SNAPSHOT'
 | |
| 
 | |
| java {
 | |
| 	toolchain {
 | |
| 		languageVersion = JavaLanguageVersion.of(17)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| test {
 | |
| 	systemProperty 'spring.profiles.active', 'test'
 | |
| }
 | |
| 
 | |
| repositories {
 | |
| 	mavenCentral()
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
| 	implementation group: 'org.springdoc', name: 'springdoc-openapi-starter-webmvc-ui', version: '2.8.5'
 | |
| 	implementation group: 'org.springframework.boot', name:'spring-boot-starter-oauth2-client', version: '3.5.5'
 | |
| 	compileOnly 'org.projectlombok:lombok:1.18.30'
 | |
| 	annotationProcessor 'org.projectlombok:lombok:1.18.30'
 | |
| 	implementation 'org.springframework.boot:spring-boot-starter-web'
 | |
| 	testImplementation 'org.springframework.boot:spring-boot-starter-test'
 | |
| 	testImplementation 'org.springframework.security:spring-security-test'
 | |
| 	testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
 | |
| 	implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
 | |
| 	runtimeOnly 'org.postgresql:postgresql'
 | |
| 	implementation 'org.hibernate.validator:hibernate-validator'
 | |
| }
 | |
| 
 | |
| tasks.named('test') {
 | |
| 	useJUnitPlatform()
 | |
| }
 |