README License/contribute section
1 file changed
tree: 912b2e5f22fb8d880dbe131764555e0bd37fbc23
  1. osgi-launcher/
  2. taverna-app-configuration-api/
  3. taverna-app-configuration-impl/
  4. taverna-configuration-api/
  5. taverna-configuration-impl/
  6. taverna-download-api/
  7. taverna-download-impl/
  8. taverna-maven-plugin/
  9. taverna-osgi-schemas/
  10. taverna-plugin-api/
  11. taverna-plugin-impl/
  12. taverna-update-api/
  13. taverna-update-impl/
  14. xml-parser-service/
  15. xml-transformer-service/
  16. .gitignore
  17. .travis.yml
  18. DISCLAIMER
  19. LICENSE
  20. NOTICE
  21. pom.xml
  22. README.md
README.md

Apache Taverna OSGi plugin system

OSGi-based plugin system, including online updates. Written for Apache Taverna (incubating), probably usable for any OSGi-based command line/desktop product.

License

(c) 2007-2014 University of Manchester (c) 2015 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

Feel free to contribute to Apache Taverna by submitting an issue, send a pull request, or discuss the project at the dev@taverna mailing list.

All contributions are assumed to be licensed under the Apache License 2.0, unless otherwise noted.

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.

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