Skip to content
Snippets Groups Projects
Select Git revision
  • 4401502c5d34921245fca4581ebcf3c5f7cb6326
  • master default protected
  • devops
  • deeksha
4 results

build.gradle

Blame
  • build.gradle 449 B
    plugins {
    	id 'java'
    	id 'org.springframework.boot' version '2.7.16'
    	id 'io.spring.dependency-management' version '1.1.3'
    }
    
    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()
    }