NIFIREG-87 signed release tag for approved release of NiFi Registry 0.1.0
NIFIREG-87-RC1 prepare release nifi-registry-0.1.0-RC1
19 files changed
tree: fe03ba4f9cc4a9afe5e5d677477306c302116994
  1. nifi-registry-assembly/
  2. nifi-registry-bootstrap/
  3. nifi-registry-client/
  4. nifi-registry-data-model/
  5. nifi-registry-docs/
  6. nifi-registry-flow-diff/
  7. nifi-registry-framework/
  8. nifi-registry-jetty/
  9. nifi-registry-properties/
  10. nifi-registry-provider-api/
  11. nifi-registry-resources/
  12. nifi-registry-runtime/
  13. nifi-registry-security-api/
  14. nifi-registry-security-utils/
  15. nifi-registry-utils/
  16. nifi-registry-web-api/
  17. nifi-registry-web-docs/
  18. nifi-registry-web-ui/
  19. .gitignore
  20. .travis.yml
  21. build-and-run.sh
  22. LICENSE
  23. NOTICE
  24. pom.xml
  25. README.md
  26. stop.sh
README.md

Apache NiFi Registry

Registry—a subproject of Apache NiFi—is a complementary application that provides a central location for storage and management of shared resources across one or more instances of NiFi and/or MiNiFi.

Table of Contents

Getting Started

Requirements

  • Java 1.8 (above 1.8.0_45)
  • Maven 3.1.0, or newer
  • Recent git client
  1. Clone the repo

     git clone https://git-wip-us.apache.org/repos/asf/nifi-registry.git
     git checkout master
    
  2. Build the project

     cd nifi-registry
     mvn clean install
    

    If you wish to enable style and license checks, specify the contrib-check profile:

     mvn clean install -Pcontrib-check
    

    If you wish to run integration tests and contrib-check, specify both profiles:

     mvn clean install -Pcontrib-check,integration-tests
    
  3. Start the application

     cd nifi-registry-assembly/target/nifi-registry-<VERSION>-bin/nifi-registry-<VERSION>/
     ./bin/nifi-registry.sh start
    
  4. Launch the application

    With the default settings, the application will be available athttp://localhost:18080/nifi-registry

  5. Logging

    Logs will be available in logs/nifi-registry.app.log

License

Except as otherwise noted this software is licensed under the Apache License, Version 2.0

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.