Hey guys, Has any of you managed to get the artifa...
# gradle
l
Hey guys, Has any of you managed to get the artifactory plugin to work with the gradle kotlin DSL ? I can't figure out how to configure it in kts... My current config goes like this :
Copy code
artifactory {
    contextUrl = "${artifactory_contextUrl}"
    publish {
        repository {
            repoKey = 'pfs-myshop-maven-snapshot'
            username = artifactory_user
            password = artifactory_password
            maven = true

        }
        defaults {
            publications('mypublication')
            publishArtifacts = true
            publishPom = true
        }
    }
}