```plugins { id "nebula.dependency-recommender...
# gradle
s
Copy code
plugins {
    id "nebula.dependency-recommender" version "5.0.0"
    id 'java'
//    id "org.jetbrains.kotlin.jvm" version "1.1.51"
//    id "org.jetbrains.kotlin.plugin.spring" version "1.1.51"
//    id "org.springframework.boot" version "1.5.8.RELEASE"
}

description = 'Server'
version = '0.4.0'

dependencyRecommendations {
    mavenBom module: 'com.company.enterprise:pt-enterprise-parent:0.5.0-SNAPSHOT'
}

apply plugin: 'java'
apply plugin: 'nebula.dependency-recommender'
//apply plugin: 'kotlin' // Required for Kotlin integration
//apply plugin: "kotlin-spring" // See <https://kotlinlang.org/docs/reference/compiler-plugins.html#kotlin-spring-compiler-plugin>
//apply plugin: 'org.springframework.boot'

repositories {
    jcenter()
    mavenCentral()
    mavenLocal()
}

dependencies {
//    compile "org.jetbrains.kotlin:kotlin-stdlib:1.1.51" // Required for Kotlin integration
//    compile 'org.springframework.boot:spring-boot-starter-web'
//    testCompile('org.springframework.boot:spring-boot-starter-test')

    testCompile 'com.nhaarman:mockito-kotlin'
}