does anybody has experience with generating pom fi...
# android
m
does anybody has experience with generating pom files? I used this
Copy code
task writeNewPom << {
    pom {
        project {
            inceptionYear '2008'
            licenses {
                license {
                    name 'The Apache Software License, Version 2.0'
                    url '<http://www.apache.org/licenses/LICENSE-2.0.txt>'
                    distribution 'repo'
                }
            }
        }
    }.writeTo("$buildDir/newpom.xml")
}
but it doesnt writte any dependencies into pom file what am I doing wrong? 😞