Getting error in the application, need help please

Hi, I am using java 8 and build.gradle file is as below.
When i am running my test case, getting error. Could someone please help me to solve this error. Thanks in advance.
Error:

Task :compileJava NO-SOURCE
Task :processResources NO-SOURCE
Task :classes UP-TO-DATE
Task :compileTestJava
also not able to import
import cucumber.api.DataTable;
import cucumber.api.java.en.Given;
import cucumber.api.java.en.Then;
import cucumber.api.java.en.When;

Build.gradle file:
repositories {
mavenLocal()
jcenter()
}
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath(“net.serenity-bdd:serenity-gradle-plugin:1.9.20”)
}
}
apply plugin: ‘java’
apply plugin: ‘idea’
apply plugin: ‘net.serenity-bdd.aggregator’

dependencies {
// testCompile files(‘serenity.properties’)
// compile ‘net.serenity-bdd:serenity-core:1.9.45’
testCompile ‘net.serenity-bdd:serenity-junit:+’
testCompile ‘net.serenity-bdd:serenity-cucumber:+’
testCompile ‘junit:junit:+’
testCompile ‘org.assertj:assertj-core:+’
testCompile ‘org.slf4j:slf4j-simple:+’
testCompile ‘org.seleniumhq.selenium:selenium-chrome-driver:3.+’
testCompile ‘org.seleniumhq.selenium:selenium-remote-driver:3.+’
testCompile ‘org.codehaus.jettison:jettison:+’
testCompile ‘org.awaitility:awaitility:3.1.6’
}
gradle.startParameter.continueOnFailure = true

I think you need to add dependency to cucumber oder should this be included in any dependency?