Tagged by Jenkins.
[incubator-kie-issues#1068] Fix gradle build output (#5839)

* [test-gradle-target] WIP

* [incubator-kie-issues#1068] Enhancing dual build-system management. Locally working

* [incubator-kie-issues#1068] Remove duplicated GeneratedFileWriter

* [incubator-kie-issues#1068] Extend test coverage

* [incubator-kie-issues#1068] Remove unused parameter

* [incubator-kie-issues#1068] Fix missing/wrong headers

* [incubator-kie-issues#1068] Fix wrong reference in javadoc

---------

Co-authored-by: Gabriele-Cardosi <gabriele.cardosi@ibm.com>
11 files changed
tree: b164bf961bae94ed86ea34c12501a76c4189c958
  1. .ci/
  2. .github/
  3. .openrewrite/
  4. bom/
  5. build-parent/
  6. drools-alphanetwork-compiler/
  7. drools-base/
  8. drools-beliefs/
  9. drools-commands/
  10. drools-compiler/
  11. drools-core/
  12. drools-decisiontables/
  13. drools-distribution/
  14. drools-docs/
  15. drools-drl/
  16. drools-drlonyaml-parent/
  17. drools-ecj/
  18. drools-engine/
  19. drools-engine-classic/
  20. drools-examples/
  21. drools-examples-api/
  22. drools-fastutil/
  23. drools-impact-analysis/
  24. drools-io/
  25. drools-kiesession/
  26. drools-legacy-test-util/
  27. drools-metric/
  28. drools-model/
  29. drools-mvel/
  30. drools-persistence/
  31. drools-quarkus-extension/
  32. drools-reliability/
  33. drools-retediagram/
  34. drools-ruleunits/
  35. drools-scenario-simulation/
  36. drools-serialization-protobuf/
  37. drools-templates/
  38. drools-test-coverage/
  39. drools-tms/
  40. drools-traits/
  41. drools-util/
  42. drools-verifier/
  43. drools-wiring/
  44. drools-xml-support/
  45. efesto/
  46. kie-api/
  47. kie-archetypes/
  48. kie-ci/
  49. kie-dmn/
  50. kie-drl/
  51. kie-internal/
  52. kie-maven-plugin/
  53. kie-memory-compiler/
  54. kie-pmml-trusty/
  55. kie-test-util/
  56. kie-util/
  57. script/
  58. .asf.yaml
  59. .git-blame-ignore-revs
  60. .gitignore
  61. LICENSE-Apache-2.0.txt
  62. Makefile
  63. pom.xml
  64. README.md
README.md

An open source rule engine, DMN engine and complex event processing (CEP) engine for Java™ and the JVM Platform.

Drools is a business rule management system with a forward-chaining and backward-chaining inference based rules engine, allowing fast and reliable evaluation of business rules and complex event processing. A rule engine is also a fundamental building block to create an expert system which, in artificial intelligence, is a computer system that emulates the decision-making ability of a human expert.

Be sure to check out the Drools' project website and documentation!

Developing Drools and jBPM

If you want to build or contribute to a kiegroup project, read this document.

It will save you and us a lot of time by setting up your development environment correctly. It solves all known pitfalls that can disrupt your development. It also describes all guidelines, tips and tricks. If you want your pull requests (or patches) to be merged, please respect those guidelines.

Test execution tip

Some test are meant to be executed on machine with en_US locale. A specific profile is provided to execute them on machines with different locale, namely test-en. There are two ways to activate such profile during maven build:

  1. -Ptest-en (profile-id based)
  2. -DTestEn (property based)

The following two commands will execute tests on machine with locale different than en_US:

  1. make test -Ptest-en
  2. make test -DTestEn