Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • stage1-devops
  • jdk-17
  • new-jdk
4 results

build.gradle

Blame
  • build.gradle 502 B
    plugins {
    	id 'java'
    	id 'org.springframework.boot' version '2.7.16'
    	id 'io.spring.dependency-management' version '1.1.3'
    	id 'com.github.ben-manes.versions' version '0.39.0'
    }
    
    group = 'com.example'
    version = '0.0.1-SNAPSHOT'
    
    java {
    	sourceCompatibility = '11'
    }
    
    repositories {
    	mavenCentral()
    }
    
    dependencies {
    	implementation 'org.springframework.boot:spring-boot-starter-web'
    	testImplementation 'org.springframework.boot:spring-boot-starter-test'
    }
    
    tasks.named('test') {
    	useJUnitPlatform()
    }