Not able to compile build.gradle

here is buiild the build.gradle file:

/*
 * SPDX-License-Identifier: Apache-2.0
 *
 * The OpenSearch Contributors require contributions made to
 * this file be licensed under the Apache-2.0 license or a
 * compatible open source license.
 *
 * Modifications Copyright OpenSearch Contributors. See
 * GitHub history for details.
 */

import org.opensearch.gradle.test.RestIntegTestTask

buildscript {
    ext {
        opensearch_version = System.getProperty("opensearch.version", "2.3.0")
        isSnapshot = "true" == System.getProperty("build.snapshot", "true")

        buildVersionQualifier = System.getProperty("build.version_qualifier", "")

        // 2.0.0-rc1-SNAPSHOT -> 2.0.0.0-rc1-SNAPSHOT
        version_tokens = opensearch_version.tokenize('-')
        opensearch_build = version_tokens[0] + '.0'

        common_utils_version = System.getProperty("common_utils.version", '2.1.0.0')


        if (buildVersionQualifier) {
            opensearch_build += "-${buildVersionQualifier}"
        }
        if (isSnapshot) {
            opensearch_build += "-SNAPSHOT"
        }
    }

    repositories {
        //mavenCentral()
        mavenLocal()
        maven {
            url "https://artifactory.oci.oraclecorp.com/libs-snapshot/"
        }
        maven {
            url "https://artifactory.oci.oraclecorp.com/libs-release/"
        }
        //maven { url "https://plugins.gradle.org/m2/" }
        //maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
        //maven { url "https://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/" }
    }

    dependencies {
        classpath "org.opensearch.gradle:build-tools:${opensearch_version}"
    }
}

plugins {
    id 'java'
    id 'idea'
    id 'jacoco'
    id 'maven-publish'
    id 'com.diffplug.spotless' version '5.11.0'
    id 'checkstyle'
    id 'nebula.ospackage'  version "8.3.0"
    id "org.gradle.test-retry" version "1.3.1"
}

allprojects {
    group = "org.opensearch"
    version = opensearch_build
}

apply plugin: 'opensearch.opensearchplugin'
apply plugin: 'opensearch.pluginzip'
apply plugin: 'opensearch.rest-test'
apply plugin: 'opensearch.testclusters'
apply plugin: 'java'
apply plugin: 'maven-publish'

licenseFile = rootProject.file('LICENSE.txt')
noticeFile = rootProject.file('NOTICE.txt')

spotless {
  java {
    // note: you can use an empty string for all the imports you didn't specify explicitly, and '\\#` prefix for static imports
    importOrder('java', 'javax', '', 'com.amazon', 'org.opensearch', '\\#')
  }
}

java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11

licenseHeaders.enabled = true

// The following check that have never be enabled in security
dependencyLicenses.enabled = false
thirdPartyAudit.enabled = false
loggerUsageCheck.enabled = false
forbiddenApisMain.enabled = false
forbiddenApisTest.enabled = false
filepermissions.enabled = false
forbiddenPatterns.enabled = false
testingConventions.enabled = false
// Conflicts between runtime kafka-clients:3.0.1 & testRuntime kafka-clients:3.0.1:test
jarHell.enabled = false

test {
    include '**/*.class'
    filter {
        excludeTestsMatching "org.opensearch.security.sanity.tests.*"
    }
    maxParallelForks = 8
    jvmArgs += "-Xmx3072m"
    if (JavaVersion.current() > JavaVersion.VERSION_11) {
        jvmArgs += "--add-opens=java.base/java.io=ALL-UNNAMED"
    }
    retry {
        failOnPassedAfterRetry = false
        maxRetries = 5
    }
    jacoco {
        excludes = [
            "com.sun.jndi.dns.*",
            "com.sun.security.sasl.gsskerb.*",
            "java.sql.*",
            "javax.script.*",
            "org.jcp.xml.dsig.internal.dom.*",
            "sun.nio.cs.ext.*",
            "sun.security.ec.*",
            "sun.security.jgss.*",
            "sun.security.pkcs11.*",
            "sun.security.smartcardio.*",
            "sun.util.resources.provider.*"
        ]
    }
}

task copyExtraTestResources(dependsOn: testClasses) {
    copy {
        from 'src/test/resources'
        into 'build/testrun/test/src/test/resources'
    }
}
tasks.test.dependsOn(copyExtraTestResources)

jacoco {
    reportsDirectory = file("$buildDir/reports/jacoco")
}

jacocoTestReport {
    reports {
        xml.required = true
    }
}

checkstyle {
    configFile file("checkstyle/sun_checks.xml")
}

opensearchplugin {
    name 'opensearch-security'
    description 'Provide access control related features for OpenSearch'
    classname 'org.opensearch.security.OpenSearchSecurityPlugin'
}

// This requires an additional Jar not published as part of build-tools
loggerUsageCheck.enabled = false

// No need to validate pom, as we do not upload to maven/sonatype
validateNebulaPom.enabled = false


publishing {
    publications {
        maven(MavenPublication) {
            groupId = "com.baeldung.sample"
            artifactId = "gradle-maven-converter"
            version = "0.0.1-maven"
            from components.java
            licenses {
                license {
                    name = "The Apache License, Version 2.0"
                    url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
                }
            }
            developers {
                developer {
                    name = "OpenSearch"
                    url = "https://github.com/opensearch-project/security"
                }
            }
            pom {
                name = "Sample Library"
                description = "A descrxiption of sample library"
                licenses {
                    license {
                        name = "The Apache License, Version 2.0"
                        url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
                    }
                }
                developers {
                    developer {
                        name = "OpenSearch"
                        url = "https://github.com/opensearch-project/security"
                    }
                }
            }
        }
    }
}

tasks.withType(Checkstyle) {
    showViolations true
    reports {
        ignoreFailures = false
    }
}

tasks.withType(JavaCompile) {
    configure(options) {
        options.encoding = 'UTF-8'
        options.compilerArgs << '-Xlint:removal' << '-Werror'
    }
}

tasks.test.finalizedBy(jacocoTestReport)  // report is always generated after tests run
tasks.jacocoTestReport.dependsOn(test) // tests are required to run before generating the report

tasks.validateMavenPom.dependsOn("generatePomFileForNebulaPublication")


allprojects {
    tasks.withType(Javadoc).all { enabled = false }
}

bundlePlugin {
    from('plugin-security.policy')
    from('config') {
        into 'config'
    }
    from('tools') {
        into 'tools'
    }
}

configurations.all {
    resolutionStrategy {
        force 'commons-codec:commons-codec:1.14'
        force 'org.slf4j:slf4j-api:1.7.30'
        force 'org.scala-lang:scala-library:2.13.8'
        force 'commons-io:commons-io:2.11.0'
        force "com.fasterxml.jackson:jackson-bom:${versions.jackson}"
        force "com.fasterxml.jackson.core:jackson-core:${versions.jackson}"
        force "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${versions.jackson}"
        force "com.fasterxml.jackson.core:jackson-databind:2.13.4.2"
        force "io.netty:netty-buffer:${versions.netty}"
        force "io.netty:netty-common:${versions.netty}"
        force "io.netty:netty-handler:${versions.netty}"
        force "io.netty:netty-transport:${versions.netty}"
        force "io.netty:netty-transport-native-unix-common:${versions.netty}"
    }
}

dependencies {
    implementation 'jakarta.annotation:jakarta.annotation-api:1.3.5'
    implementation "org.opensearch.plugin:transport-netty4-client:${opensearch_version}"
    implementation "org.opensearch.client:opensearch-rest-high-level-client:${opensearch_version}"
    implementation 'com.google.guava:guava:30.0-jre'
    implementation 'org.greenrobot:eventbus:3.2.0'
    implementation 'commons-cli:commons-cli:1.3.1'
    implementation 'org.bouncycastle:bcprov-jdk15on:1.67'
    implementation 'org.ldaptive:ldaptive:1.2.3'
    implementation 'org.apache.httpcomponents:httpclient-cache:4.5.13'
    implementation 'io.jsonwebtoken:jjwt-api:0.10.8'
    implementation('org.apache.cxf:cxf-rt-rs-security-jose:3.4.5') {
        exclude(group: 'jakarta.activation', module: 'jakarta.activation-api')
    }
    implementation 'com.github.wnameless:json-flattener:0.5.0'
    implementation 'com.flipkart.zjsonpatch:zjsonpatch:0.4.4'
    implementation 'org.apache.kafka:kafka-clients:3.0.1'
    implementation 'com.onelogin:java-saml:2.5.0'
    implementation 'com.onelogin:java-saml-core:2.5.0'

    runtimeOnly 'net.minidev:accessors-smart:2.4.7'

    runtimeOnly 'org.apache.cxf:cxf-core:3.4.5'
    implementation 'org.apache.cxf:cxf-rt-rs-json-basic:3.4.5'
    runtimeOnly 'org.apache.cxf:cxf-rt-security:3.4.5'

    runtimeOnly 'com.sun.activation:jakarta.activation:1.2.2'
    runtimeOnly 'com.eclipsesource.minimal-json:minimal-json:0.9.5'
    runtimeOnly 'commons-codec:commons-codec:1.14'
    runtimeOnly 'org.cryptacular:cryptacular:1.2.4'
    runtimeOnly 'com.google.errorprone:error_prone_annotations:2.3.4'
    runtimeOnly 'com.sun.istack:istack-commons-runtime:3.0.12'
    runtimeOnly 'jakarta.xml.bind:jakarta.xml.bind-api:2.3.3'
    runtimeOnly 'org.ow2.asm:asm:9.1'

    testImplementation 'org.apache.camel:camel-xmlsecurity:3.14.2'

    implementation 'net.shibboleth.utilities:java-support:7.5.1'
    implementation 'org.opensaml:opensaml-core:3.4.5'
    implementation 'org.opensaml:opensaml-security-impl:3.4.5'
    implementation 'org.opensaml:opensaml-security-api:3.4.5'
    implementation 'org.opensaml:opensaml-xmlsec-api:3.4.5'
    implementation 'org.opensaml:opensaml-xmlsec-impl:3.4.5'
    implementation 'org.opensaml:opensaml-saml-api:3.4.5'
    implementation ('org.opensaml:opensaml-saml-impl:3.4.5') {
        exclude(group: 'org.apache.velocity', module: 'velocity')
    }
    testImplementation 'org.opensaml:opensaml-messaging-impl:3.4.5'
    implementation 'org.opensaml:opensaml-messaging-api:3.4.5'
    runtimeOnly 'org.opensaml:opensaml-profile-api:3.4.5'
    runtimeOnly 'org.opensaml:opensaml-soap-api:3.4.5'
    runtimeOnly 'org.opensaml:opensaml-soap-impl:3.4.5'
    implementation 'org.opensaml:opensaml-storage-api:3.4.5'
    implementation 'commons-lang:commons-lang:2.4'
    implementation 'commons-collections:commons-collections:3.2.2'
    implementation 'com.jayway.jsonpath:json-path:2.4.0'
    implementation 'org.apache.httpcomponents:httpclient:4.5.13'
    implementation 'org.apache.httpcomponents:httpclient:4.5.13'
    implementation 'net.minidev:json-smart:2.4.7'
    runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.10.8'
    runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.10.8'
    runtimeOnly 'com.google.guava:failureaccess:1.0.1'
    runtimeOnly 'org.apache.commons:commons-text:1.2'
    runtimeOnly 'org.glassfish.jaxb:jaxb-runtime:2.3.4'
    runtimeOnly 'com.google.j2objc:j2objc-annotations:1.3'
    runtimeOnly 'com.google.code.findbugs:jsr305:3.0.2'
    runtimeOnly 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'
    runtimeOnly 'org.lz4:lz4-java:1.7.1'
    runtimeOnly 'io.dropwizard.metrics:metrics-core:3.1.2'
    runtimeOnly 'org.slf4j:slf4j-api:1.7.30'
    runtimeOnly 'org.xerial.snappy:snappy-java:1.1.8.1'
    runtimeOnly 'org.codehaus.woodstox:stax2-api:4.2.1'
    runtimeOnly 'org.glassfish.jaxb:txw2:2.3.4'
    runtimeOnly 'com.fasterxml.woodstox:woodstox-core:6.4.0'
    runtimeOnly 'org.apache.ws.xmlschema:xmlschema-core:2.2.5'
    runtimeOnly 'org.apache.santuario:xmlsec:2.2.3'
    runtimeOnly 'com.github.luben:zstd-jni:1.5.0-2'
    runtimeOnly 'org.checkerframework:checker-qual:3.5.0'


    implementation 'org.apache.commons:commons-lang3:3.4'
    testImplementation "org.opensearch.plugin:reindex-client:${opensearch_version}"
    testImplementation "org.opensearch:opensearch-ssl-config:${opensearch_version}"
    testImplementation "org.opensearch.plugin:percolator-client:${opensearch_version}"
    testImplementation "org.opensearch.plugin:lang-mustache-client:${opensearch_version}"
    testImplementation "org.opensearch.plugin:parent-join-client:${opensearch_version}"
    testImplementation "org.opensearch.plugin:aggs-matrix-stats-client:${opensearch_version}"
    testImplementation 'org.apache.logging.log4j:log4j-core:2.17.1'
    testImplementation 'commons-io:commons-io:2.7'
    testImplementation 'javax.servlet:servlet-api:2.5'
    testImplementation 'com.unboundid:unboundid-ldapsdk:4.0.9'
    testImplementation 'com.github.stephenc.jcip:jcip-annotations:1.0-1'
    testImplementation 'com.unboundid:unboundid-ldapsdk:4.0.9'
    testImplementation 'javax.servlet:servlet-api:2.5'
    testImplementation 'org.apache.httpcomponents:fluent-hc:4.5.13'
    testImplementation 'org.apache.kafka:kafka_2.13:3.0.1'
    testImplementation 'org.apache.kafka:kafka_2.13:3.0.1:test'
    testImplementation 'org.apache.kafka:kafka-clients:3.0.1:test'
    testImplementation 'org.springframework.kafka:spring-kafka-test:2.8.6'
    testImplementation 'org.springframework:spring-beans:5.3.20'
    testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
    testImplementation "org.opensearch:common-utils:${common_utils_version}"
    // JUnit build requirement
    testCompileOnly 'org.apiguardian:apiguardian-api:1.0.0'
    // Kafka test execution
    testRuntimeOnly 'org.springframework.retry:spring-retry:1.3.3'
    testRuntimeOnly ('org.springframework:spring-core:5.3.21') {
        exclude(group:'org.springframework', module: 'spring-jcl' )
    }
    testRuntimeOnly 'org.scala-lang:scala-library:2.13.8'
    testRuntimeOnly 'com.yammer.metrics:metrics-core:2.2.0'
    testRuntimeOnly 'com.typesafe.scala-logging:scala-logging_3:3.9.5'
    testRuntimeOnly 'org.apache.zookeeper:zookeeper:3.7.1'
    testRuntimeOnly 'org.apache.kafka:kafka-metadata:3.0.1'
    testRuntimeOnly 'org.apache.kafka:kafka-storage:3.0.1'



    implementation "com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}"
    implementation "com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}"

    compileOnly "org.opensearch:opensearch:${opensearch_version}"
}

jar {
    libsDirName = '.'
    into '', {
        from 'NOTICE.txt', "THIRD-PARTY.txt", "LICENSE"
    }
    processResources {
        exclude("KEYS")
    }
}

tasks.register('testsJar', Jar) {
    archiveClassifier = 'tests'
    from(sourceSets.test.output)
}

testsJar {
    libsDirName = '.'
}

task bundleSecurityAdminStandalone(dependsOn: jar, type: Zip) {
    archiveClassifier = 'securityadmin-standalone'
    from(configurations.runtimeClasspath) {
        into 'deps/'
    }
    from(project.jar) {
        into 'deps/'
    }
    from('tools') {
        into 'tools/'
    }
    from('config') {
        into 'deps/securityconfig'
    }
}

task bundleSecurityAdminStandaloneTarGz(dependsOn: jar, type: Tar) {
    archiveClassifier = 'securityadmin-standalone'
    archiveExtension = 'tar.gz'
    compression = Compression.GZIP
    from(configurations.runtimeClasspath) {
        into 'deps/'
    }
    from(project.jar) {
        into 'deps/'
    }
    from('tools') {
        into 'tools/'
    }
    from('config') {
        into 'deps/securityconfig'
    }
}

buildRpm {
    arch = 'NOARCH'
    addParentDirs = false
    archiveName "${packageName}-${version}.rpm"
}

buildDeb {
    arch = 'all'
    archiveName "${packageName}-${version}.deb"
}


task integTestRemote(type: RestIntegTestTask) {

    systemProperty "tests.security.manager", "false"
    systemProperty "user", System.getProperty("user")
    systemProperty "password", System.getProperty("password")
    systemProperty "https", System.getProperty("https")
    systemProperty "security.enabled", "true"

    filter {
        setIncludePatterns("org.opensearch.security.sanity.tests.*IT")
    }
}

integTestRemote.enabled = System.getProperty("tests.rest.cluster") != null
// should be updated appropriately, when we add integTests in future
integTest.enabled = false

// This is afterEvaluate because the bundlePlugin ZIP task is updated afterEvaluate and changes the ZIP name to match the plugin name
afterEvaluate {
    ospackage {
        packageName = "${name}"
        release = isSnapshot ? "0.1" : '1'
        version = "${project.version}" - "-SNAPSHOT"

        into '/usr/share/opensearch/plugins'
        from(zipTree(bundlePlugin.archivePath)) {
            into opensearchplugin.name
        }

        user 'root'
        permissionGroup 'root'
        fileMode 0644
        dirMode 0755

        requires('opensearch', versions.opensearch, EQUAL)
        packager = 'Amazon'
        vendor = 'Amazon'
        os = 'LINUX'
        prefix '/usr'

        license 'ASL-2.0'
        maintainer 'OpenSearch <opensearch@amazon.com>'
        url 'https://opensearch.org/downloads.html'
        summary '''
         Security plugin for OpenSearch.
         Reference documentation can be found at https://opensearch.org/docs/latest/.
    '''.stripIndent().replace('\n', ' ').trim()
    }

    buildRpm {
        arch = 'NOARCH'
        dependsOn 'assemble'
        finalizedBy 'renameRpm'
        task renameRpm(type: Copy) {
            from("$buildDir/distributions")
            into("$buildDir/distributions")
            include archiveName
            rename archiveName, "${packageName}-${version}.rpm"
            doLast { delete file("$buildDir/distributions/$archiveName") }
        }
    }

    buildDeb {
        arch = 'all'
        dependsOn 'assemble'
        finalizedBy 'renameDeb'
        task renameDeb(type: Copy) {
            from("$buildDir/distributions")
            into("$buildDir/distributions")
            include archiveName
            rename archiveName, "${packageName}-${version}.deb"
            doLast { delete file("$buildDir/distributions/$archiveName") }
        }
    }

    task buildPackages(type: GradleBuild) {
        tasks = ['build', 'buildRpm', 'buildDeb']
    }
}

// updateVersion: Task to auto increment to the next development iteration
task updateVersion {
    onlyIf { System.getProperty('newVersion') }
    doLast {
        ext.newVersion = System.getProperty('newVersion')
        println "Setting version to ${newVersion}."
        // String tokenization to support -SNAPSHOT
        ant.replaceregexp(match: opensearch_version.tokenize('-')[0], replace: newVersion.tokenize('-')[0], flags:'g', byline:true) {
            fileset(dir: projectDir) {
                // Include the required files that needs to be updated with new Version
                include(name: "bwc-test/build.gradle")
            }
        }
        ant.replaceregexp(file:'build.gradle', match: '"opensearch.version", "\\d.*"', replace: '"opensearch.version", "' + newVersion.tokenize('-')[0] + '-SNAPSHOT"', flags:'g', byline:true)
    }
}

error:

 Where:
Build file '/Users/kusatyam/workspace/opensearch-security-mirror/build.gradle' line: 171

* What went wrong:
A problem occurred evaluating root project 'opensearch-security'.
> No signature of method: build_5wndr8gj5a0mvad7gm9rg9qz4.publishing() is applicable for argument types: (build_5wndr8gj5a0mvad7gm9rg9qz4$_run_closure9) values: [build_5wndr8gj5a0mvad7gm9rg9qz4$_run_closure9@66a9a3c6]

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

Configuring licenses and developers directly in a MavenPublication is not supported. It looks like you already tried to place them in pom {}, which is where they belong.

yes correct, but if i remove the tags you mention, it simply throws below error:

> Task :validateMavenPom FAILED
Execution optimizations have been disabled for task ':validateMavenPom' to ensure correctness due to the following reasons:
  - Gradle detected a problem with the following location: '/Users/kusatyam/workspace/opensearch-security-mirror/build/distributions/opensearch-security-2.3.0.0-SNAPSHOT.pom'. Reason: Task ':validateMavenPom' uses this output of task ':generatePomFileForPluginZipPublication' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed. Please refer to https://docs.gradle.org/7.4.2/userguide/validation_problems.html#implicit_dependency for more details about this problem.
name is missing in [/Users/kusatyam/workspace/opensearch-security-mirror/build/distributions/opensearch-security-2.3.0.0-SNAPSHOT.pom]

description is missing in [/Users/kusatyam/workspace/opensearch-security-mirror/build/distributions/opensearch-security-2.3.0.0-SNAPSHOT.pom]

licenses is empty in [/Users/kusatyam/workspace/opensearch-security-mirror/build/distributions/opensearch-security-2.3.0.0-SNAPSHOT.pom]

developers is empty in [/Users/kusatyam/workspace/opensearch-security-mirror/build/distributions/opensearch-security-2.3.0.0-SNAPSHOT.pom]

FAILURE: Build failed with an exception.