Can't create AntBuilder object in groovy gradle

When trying to create an object AntBuidler

in groovy file I am getting below exception

java.lang.NoClassDefFoundError: org/apache/tools/ant/BuildException
at java.lang.Class.getDeclaredConstructors0(Native Method)
  at java.lang.Class.privateGetDeclaredConstructors(Class.java:2493)
  at java.lang.Class.getDeclaredConstructors(Class.java:1901)
  .....
  at at features.step_definitions.RewardEventsGeneration.GetEventXML(RewardEventsGeneration.groovy:40)

      

in ✽. Then the updateLoyaltyInfo event should be generated.

I added the appropriate jar to my lib folder and then put it under the code under build.gradle

repositories {
    mavenCentral()
    flatDir {
        dirs 'lib'
    }
}

      

My code is below

def GetEventXML (userId, eventTypeIn)
{
    def Host = "10.77.69.14"
    def UserName = "system"
    def Password = "password"
    def Path = "/temp"

    def eventTypeToLookFor = "eventType=\"$eventTypeIn\""
    def resultAsString = "" as String

    def commandToRun = "grep -lH $userId $Path/*.xml | xargs grep -l '$eventTypeToLookFor' | cut -d: -f1"
    def antEventCheck = new AntBuilder();   ********** Error line ******************


        antEventCheck.sshexec(  trust:'true',
                host:Host,
                username:UserName,
                password:Password,
                command:commandToRun,
                verbose:'true',
                timeout:'10000',
                failonerror:'false',
                outputproperty:'eventCheckResult');

        resultAsString = antEventCheck.properties.eventCheckResult.toString()  

    return resultAsString
}

      

build.gradle

dependencies {
    ext.groovyVersion = "2.0.4"
    ext.cucumberJvmVersion = "1.1.5"
    ext.httpclientVersion = "4.2.1"

    cucumberRuntime files("${jar.archivePath}")

    compile ('com.jcraft:jsch:0.1.49')   

    compile('com.github.groovy-wslite:groovy-wslite:0.8.0')
    groovy("org.codehaus.groovy:groovy-all:${groovyVersion}")
    compile("org.apache.httpcomponents:httpmime:4.1.2")
    compile("org.codehaus.groovy.modules.http-builder:http-builder:0.5.2") {
        exclude group: "org.codehaus.groovy", module: "groovy"
    }
    compile("net.sf.json-lib:json-lib:2.4:jdk15")
    compile("javax.mail:mail:1.4.5")
    compile("org.apache.httpcomponents:httpclient:${httpclientVersion}")
    compile("org.codehaus.geb:geb-core:0.7.2") {
        exclude group: "org.codehaus.geb", module: "geb-implicit-assertions"
    }

    drivers.each { driver ->
        testCompile "org.seleniumhq.selenium:selenium-$driver-driver:$version.selenium"
    }

    compile("org.seleniumhq.selenium:selenium-support:2.25.0")
    compile("log4j:log4j:1.2.17")

    testCompile("junit:junit:4.10")
    testCompile("info.cukes:cucumber-groovy:${cucumberJvmVersion}")
    testCompile("info.cukes:cucumber-junit:${cucumberJvmVersion}")
}

      

Appreciate your comments

+3


source to share


1 answer


Works perfectly fine

As pointed out by Peter, adding flatDir

would not be sufficient. You need to add them to the dependencies as well.



repositories {
    mavenCentral()
    flatDir {
        dirs 'lib'
    }
}


dependencies {
    compile("ant:ant:1.7.0")
}

      

Thanks Peter

+1


source







All Articles