Skip to content
Snippets Groups Projects
Select Git revision
  • b08f2c219616da70493b580948880530b183e6aa
  • master default protected
  • stage1-devops
  • jdk-17
  • new-jdk
5 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()
    }