newer taverna-maven-parent
1 file changed
tree: b4fcdd0f27d2cc36b3e115eb08d149842366a1e3
  1. batik-osgi/
  2. taverna-activity-icons-api/
  3. taverna-activity-palette-api/
  4. taverna-activity-palette-impl/
  5. taverna-activity-palette-ui/
  6. taverna-activity-tools/
  7. taverna-beaninfo/
  8. taverna-configuration-api/
  9. taverna-configuration-impl/
  10. taverna-contextual-views/
  11. taverna-contextual-views-api/
  12. taverna-contextual-views-impl/
  13. taverna-credential-manager-ui/
  14. taverna-data-management-config-ui/
  15. taverna-dataflow-activity-ui/
  16. taverna-design-ui/
  17. taverna-disabled-activity-ui/
  18. taverna-edits-api/
  19. taverna-edits-impl/
  20. taverna-file-api/
  21. taverna-file-impl/
  22. taverna-graph-model/
  23. taverna-graph-view/
  24. taverna-helper-api/
  25. taverna-httpproxy-config/
  26. taverna-io/
  27. taverna-iteration-strategy-ui/
  28. taverna-loop-ui/
  29. taverna-menu-api/
  30. taverna-menu-impl/
  31. taverna-menu-items/
  32. taverna-monitor-view/
  33. taverna-parallelize-ui/
  34. taverna-perspective-design/
  35. taverna-perspective-myexperiment/
  36. taverna-perspective-results/
  37. taverna-plugin-manager/
  38. taverna-plugins-gui/
  39. taverna-reference-ui/
  40. taverna-renderers-api/
  41. taverna-renderers-exts/
  42. taverna-renderers-impl/
  43. taverna-report-api/
  44. taverna-report-explainer/
  45. taverna-report-impl/
  46. taverna-report-view/
  47. taverna-results-view/
  48. taverna-retry-ui/
  49. taverna-run-ui/
  50. taverna-selection-api/
  51. taverna-selection-impl/
  52. taverna-stringconstant-activity-ui/
  53. taverna-ui/
  54. taverna-uibuilder/
  55. taverna-unrecognized-activity-ui/
  56. taverna-update-manager/
  57. taverna-workbench-api/
  58. taverna-workbench-impl/
  59. taverna-workflow-explorer/
  60. taverna-workflow-view/
  61. .gitignore
  62. DISCLAIMER
  63. LICENSE
  64. NOTICE
  65. pom.xml
  66. README.md
README.md

Apache Taverna Workbench

Desktop UI for designing and running Apache Taverna workflows.

Note that this module relies on other Apache Taverna modules for the actual workflow execution.

License

(c) 2007-2014 University of Manchester

(c) 2014-2018 Apache Software Foundation

This product includes software developed at The Apache Software Foundation.

Licensed under the Apache License 2.0, see the file LICENSE for details.

The file NOTICE contain any additional attributions and details about embedded third-party libraries and source code.

Contribute

Please subscribe to and contact the [dev@taverna](http://taverna.incubator.apache.org/community/lists#dev mailing list) for any questions, suggestions and discussions about Apache Taverna.

Bugs and feature plannings are tracked in the Jira Issue tracker under the TAVERNA component Taverna Workbench. Feel free to add an issue!

To suggest changes to this source code, feel free to raise a GitHub pull request. Any contributions received are assumed to be covered by the Apache License 2.0. We might ask you to sign a Contributor License Agreement before accepting a larger contribution.

Disclaimer

Apache Taverna is an effort undergoing incubation at the Apache Software Foundation (ASF), sponsored by the Apache Incubator PMC.

Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects.

While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.

Prerequisites

  • Java 1.7 or newer (tested with OpenJDK 1.8)
  • Apache Maven 3.2.5 or newer (older versions probably also work)

Building

To build, use

mvn clean install

This will build each module and run their tests.

Building on Windows

If you are building on Windows, ensure you unpack this source code to a folder with a short path name lenght, e.g. C:\src - as Windows has a limitation on the total path length which might otherwise prevent this code from building successfully.

Skipping tests

To skip the tests (these can be timeconsuming), use:

mvn clean install -DskipTests

If you are modifying this source code independent of the Apache Taverna project, you may not want to run the Rat Maven plugin that enforces Apache headers in every source file - to disable it, try:

mvn clean install -Drat.skip=true