Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1489 db9c70416 -> e85385a81 (forced update)
Fix config for deploy to nuget There have been changes to the nuget site that prevent older versions from working. Had to upgrade just to deploy 3.2.7/3.3.1. CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/42e38530 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/42e38530 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/42e38530 Branch: refs/heads/TINKERPOP-1489 Commit: 42e38530d4de16f4716c0c8c1abec27664964190 Parents: 48ec8aa Author: Stephen Mallette <[email protected]> Authored: Wed Dec 20 19:29:18 2017 -0500 Committer: Stephen Mallette <[email protected]> Committed: Wed Dec 20 19:29:18 2017 -0500 ---------------------------------------------------------------------- gremlin-dotnet/src/pom.xml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/42e38530/gremlin-dotnet/src/pom.xml ---------------------------------------------------------------------- diff --git a/gremlin-dotnet/src/pom.xml b/gremlin-dotnet/src/pom.xml index db056f9..0798c04 100644 --- a/gremlin-dotnet/src/pom.xml +++ b/gremlin-dotnet/src/pom.xml @@ -136,13 +136,8 @@ limitations under the License. </then> <else> - <!-- - specifically using 3.4.4 given some bug that seems to pin us to this - version - https://github.com/NuGet/Home/issues/4090 - it might work - with newer versions but definitely failed with 4.1.0 - --> <exec dir="Gremlin.Net/bin" executable="wget" failonerror="true"> - <arg line="https://dist.nuget.org/win-x86-commandline/v3.4.4/nuget.exe"/> + <arg line="https://dist.nuget.org/win-x86-commandline/v4.4.1/nuget.exe"/> </exec> </else> </if> @@ -150,12 +145,9 @@ limitations under the License. <!-- until https://github.com/NuGet/Home/issues/4095 we have to have to specify the "ConfigFile" option to nuget. - - Currently set to staging as we don't have an official release yet. For release - candidates set to https://www.nuget.org/api/v2/package --> <exec dir="Gremlin.Net/bin" executable="mono" failonerror="true"> - <arg line="nuget.exe push Gremlin.Net.*.nupkg -Source https://staging.nuget.org/api/v2/package -ConfigFile ${user.home}/.config/NuGet/NuGet.Config"/> + <arg line="nuget.exe push Gremlin.Net.*.nupkg -Source https://www.nuget.org/api/v2/package -ConfigFile ${user.home}/.config/NuGet/NuGet.Config"/> </exec> </tasks> </configuration>
