github.com/netdata/go.d.plugin@v0.58.1/mocks/springboot2/build.gradle (about)

     1  buildscript {
     2      repositories {
     3          mavenCentral()
     4      }
     5      dependencies {
     6          classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.3.RELEASE")
     7      }
     8  }
     9  
    10  apply plugin: 'java'
    11  apply plugin: 'eclipse'
    12  apply plugin: 'idea'
    13  apply plugin: 'org.springframework.boot'
    14  apply plugin: 'io.spring.dependency-management'
    15  
    16  bootJar {
    17      baseName = 'springboot2'
    18      version =  '0.1.0'
    19  }
    20  
    21  repositories {
    22      mavenCentral()
    23  }
    24  
    25  sourceCompatibility = 1.8
    26  targetCompatibility = 1.8
    27  
    28  dependencies {
    29      compile("org.springframework.boot:spring-boot-starter-web")
    30      compile("org.springframework.boot:spring-boot-starter-actuator")
    31      compile("io.micrometer:micrometer-registry-prometheus")
    32      testCompile('org.springframework.boot:spring-boot-starter-test')
    33  }