moqui / moqui-framework

Use Moqui Framework to build enterprise applications based on Java. It includes tools for databases (relational, graph, document), local and web services, web and other UI with screens and forms, security, file/resource access, scripts, templates, l10n, caching, logging, search, rules, workflow, multi-instance, and integration.
http://www.moqui.org
Other
279 stars 200 forks source link

added elasticsearch for windows break the command: ./gradlew downloadElasticSearchLinux #406

Closed hansbak closed 4 years ago

hansbak commented 4 years ago

since last commit the command ./gradlew downloadElasticSearchLinux gives:

hans@hans-laptop:~/Desktop/servers/moquiContribute/moquiSystem$ ./gradlew downloadElasticSearchLinux

FAILURE: Build failed with an exception.

BUILD FAILED

jonesde commented 4 years ago

Here's the diff from the commit to support Windows:

https://github.com/moqui/moqui-framework/commit/3132829cd68ab43c65b2719a33b3cc444aae70f9

The downloadElasticSearchLinux task has been replaced by downloadElasticSearch. The docs now need to be updated, but that should work fine (just leave off the 'Linux' at the end) or use the 'downloadel' shortcut (gradle will accept partial and ignore case if it matches a single task).

jonesde commented 4 years ago

The Run and Deploy document is now updated, the 3 references to downloadElasticSearchLinux changed to downloadElasticSearch and small text changes to mention Linux/Mac/Windows.

hansbak commented 4 years ago

Thanks, David.