Skip to content
Snippets Groups Projects
build.gradle 1.05 KiB
Newer Older
Jan Kolomazník's avatar
Jan Kolomazník committed
plugins {
	id 'java'
	id 'groovy'
	id 'org.springframework.boot' version '3.1.4'
	id 'io.spring.dependency-management' version '1.1.3'
}

group = 'cz.dnaAnalyser'
version = '0.0.1-SNAPSHOT'

java {
	sourceCompatibility = '17'
}

ext {
	set('springCloudVersion', "2022.0.4")
}


repositories {
	mavenCentral()
}

dependencies {
	// Spring
	implementation 'org.springframework.cloud:spring-cloud-starter-gateway'
	implementation 'org.springframework.boot:spring-boot-starter-actuator'
	// Monitoring
	runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
	// Testy
	testImplementation "org.codehaus.groovy:groovy:3.+"
	testImplementation('org.springframework.boot:spring-boot-starter-test') {
		exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
	}
	testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
	testImplementation 'org.spockframework:spock-spring:2.0-groovy-3.0'
}

dependencyManagement {
	imports {
		mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
	}
}

tasks.named('test') {
	useJUnitPlatform()
}