Itiviti / gradle-nuget-plugin

Executes NuGet from a gradle build
Apache License 2.0
22 stars 29 forks source link

Could not set unknown property 'nugetExePath' for extension 'nuget' of type com.ullink.NuGetExtension. #93

Open dhs-rec opened 1 year ago

dhs-rec commented 1 year ago

Hi,

using the plugin in version 2.23 with Gradle 7.4.2, I want to retrieve NuGet.exe through our local Nexus server by providing

nuget {
  nugetExePath = 'https://our.nexus.server/repository/dist.nuget.org/win-x86-commandline/v6.4.0/NuGet.exe'
}

but I get above error. Any idea what could be wrong?

dhs-rec commented 1 year ago

Guess this comes from class NuGetExtension only defining the version property:

package com.ullink

class NuGetExtension {
    String version = '5.5.0'
}