1234567891011121314151617181920212223242526272829303132333435363738 |
- plugins {
- id 'org.springframework.boot' version '2.2.7.RELEASE'
- id 'io.spring.dependency-management' version '1.0.9.RELEASE'
- id 'java'
- }
- group = 'de.spaceStudio'
- version = '0.0.1-SNAPSHOT'
- repositories {
- mavenCentral()
- mavenLocal()
- maven { url 'https://repo.spring.io/milestone' }
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'io.springfox:springfox-swagger2:2.9.2'
- implementation 'io.springfox:springfox-swagger-ui:2.9.2'
- compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
- // https://mvnrepository.com/artifact/junit/junit
- testCompile group: 'junit', name: 'junit', version: '4.13'
- // https://mvnrepository.com/artifact/org.mockito/mockito-all
- testCompile group: 'org.mockito', name: 'mockito-all', version: '2.0.2-beta'
- runtimeOnly 'com.h2database:h2'
- testImplementation('org.springframework.boot:spring-boot-starter-test') {
- exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
- }
- }
- test {
- useJUnitPlatform()
- }
- jar {
- enabled = true
- }
|