Dev/gradle

build.gradle

냐옴 2020. 8. 4. 23:53

build.gradle (no dependencies)

plugins {

    id 'org.springframework.boot' version '2.3.2.RELEASE'

    id 'io.spring.dependency-management' version '1.0.9.RELEASE'

    id 'java'

}

 

group = 'com.example'

version = '0.0.1-SNAPSHOT'

sourceCompatibility = '11'

 

repositories {

    mavenCentral()

}

 

dependencies {

    implementation 'org.springframework.boot:spring-boot-starter'

    testImplementation('org.springframework.boot:spring-boot-starter-test') {

        exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'

    }

}

 

test {

    useJUnitPlatform()

}

 

 

build.gradle (with dependencies)

plugins {

    id 'org.springframework.boot' version '2.3.2.RELEASE'

    id 'io.spring.dependency-management' version '1.0.9.RELEASE'

    id 'java'

}

 

group = 'com.example'

version = '0.0.1-SNAPSHOT'

sourceCompatibility = '11'

 

configurations {

    compileOnly {

        extendsFrom annotationProcessor

    }

}

 

repositories {

    mavenCentral()

}

 

dependencies {

    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

    implementation 'org.springframework.boot:spring-boot-starter-web'

    compileOnly 'org.projectlombok:lombok'

    developmentOnly 'org.springframework.boot:spring-boot-devtools'

    runtimeOnly 'com.h2database:h2'

    annotationProcessor 'org.projectlombok:lombok'

    testImplementation('org.springframework.boot:spring-boot-starter-test') {

        exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'

    }

}

 

test {

    useJUnitPlatform()

}