Skip to content

Commit

Permalink
basePath and packageVersion should be optional
Browse files Browse the repository at this point in the history
in nugetPack

Change-Id: Ic09059f3cbfebb87f8f289410569e22313d4a014
  • Loading branch information
ngyukman committed Apr 15, 2020
1 parent 7380538 commit 2df6d74
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/groovy/com/ullink/NuGetPack.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ class NuGetPack extends BaseNuGet {

@OutputDirectory
File destinationDir = new File(project.buildDir, project.convention.plugins.base.distsDirName)
@Optional
@InputFile
File basePath
@Optional
@Input
def packageVersion
@Optional
Expand Down

0 comments on commit 2df6d74

Please sign in to comment.