HydrologicEngineeringCenter / Vortex

data processing utilities
MIT License
27 stars 7 forks source link

Gradle build missing task in Vortex root #45

Closed msgthrows closed 3 years ago

msgthrows commented 3 years ago

Hello, I thought the issues were on my end when building the API, but there is nothing left to try on my end. I am getting the following message on a Windows 10 computer and looking at the Vortex folder I can't find any reference to "final" other then the build file. It seems to be missing. """ FAILURE: Build failed with an exception.

tombrauer commented 3 years ago

The final task should be coming in with the nebula-release plugin that is declared in the plugins block at the top of the build script. It is as if the plugin is not correctly loading on your system. You could try a gradlew --refresh-dependencies or clearing the gradle cache to see if that resets the plugin.

As a work around you could comment out the lines that depend on the nebula-release tasks which currently looks like 384-386.

image

msgthrows commented 3 years ago

Thanks! Looks like there were a couple package updates needed on the first test, but it looks like it is working!

tombrauer commented 3 years ago

Ok, good to know!