Intelij Error when Running My project

i am getting this error " Process ‘command ‘C:/Program Files/Java/jdk1.8.0_261/bin/java.exe’’ finished with non-zero exit value 1"
i am building my back end using spring boot framework version 2.3.3 and java version 1.8
kindly note that this is just a newly generated project from https://start.spring.io/

my build.gradle file:
plugins {
id ‘org.springframework.boot’ version ‘2.1.16.RELEASE’
id ‘io.spring.dependency-management’ version ‘1.0.9.RELEASE’
id ‘java’
}

group = ‘com.sha’
version = ‘0.0.1-SNAPSHOT’
sourceCompatibility = ‘1.8’

configurations {
compileOnly {
extendsFrom annotationProcessor
}
}

repositories {
mavenCentral()
}

dependencies {
implementation ‘org.springframework.boot:spring-boot-starter-data-jpa’
implementation ‘org.springframework.boot:spring-boot-starter-data-rest’
implementation ‘org.springframework.boot:spring-boot-starter-security’
implementation ‘org.springframework.boot:spring-boot-starter-web’
implementation ‘org.liquibase:liquibase-core’
compileOnly ‘org.projectlombok:lombok’
runtimeOnly ‘mysql:mysql-connector-java’
annotationProcessor ‘org.projectlombok:lombok’
testImplementation ‘org.springframework.boot:spring-boot-starter-test’
testImplementation ‘org.springframework.security:spring-security-test’
}

To get help here you need to provide more information. Please have a read on Guidelines for writing good forum posts about how a well formed forum post should look like that will raise your chances to find help here in the forum.

please check my post again i have added some details