Skip to content

Instantly share code, notes, and snippets.

@raksit31667
Created January 19, 2020 08:21
Show Gist options
  • Save raksit31667/699b8e5cb9cdad6fb5e7f7d1e3c85d78 to your computer and use it in GitHub Desktop.
Save raksit31667/699b8e5cb9cdad6fb5e7f7d1e3c85d78 to your computer and use it in GitHub Desktop.
plugins {
id 'org.springframework.boot' version '2.2.2.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'org.unbroken-dome.test-sets' version '2.2.1'
id 'java'
}
group = 'com.raksit'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
testSets {
integrationTest {
dirName = 'integration-test'
}
}
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()
}
integrationTest {
useJUnitPlatform()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment