diff --git a/.arcconfig b/.arcconfig index efc16ec..2e59055 100644 --- a/.arcconfig +++ b/.arcconfig @@ -1,3 +1,9 @@ { - "phabricator.uri": "https://phabricator.mitk.org/" + "arc.feature.start.default": "develop", + "arc.land.onto": ["develop"], + "arc.land.strategy": "merge", + "base": "git:merge-base(origin/develop)", + "history.immutable": true, + "phabricator.uri": "https://phabricator.mitk.org/", + "repository.callsign": "MPT" } diff --git a/LICENSE b/LICENSE index d68700c..4cd2f35 100644 --- a/LICENSE +++ b/LICENSE @@ -1,29 +1,29 @@ BSD 3-Clause License -Copyright (c) 2003-2019, German Cancer Research Center (DKFZ) +Copyright (c) 2003-2021, German Cancer Research Center (DKFZ) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md index c731fa9..3b3b5b0 100644 --- a/README.md +++ b/README.md @@ -1,43 +1,40 @@ The MITK Project Template ========================= This project provides a complete CMake-based set-up to get started with [MITK](https://github.com/MITK/MITK). Features -------- - Example module - ITK-based image filter - Interactor to paint in images - Example command-line app - Uses the image filter of the example module - Example plugin - GUI for the image filter and interactor of the example module - Example external project - Microsoft's Guidelines Support Library (GSL) -What's new in v2018.04 ----------------------- +How it works +------------ -The project template was completely restructured to fit the new extension -mechanism of MITK v2018.04. Here's how it basically works: - -1. Clone the latest stable branch `releases/2018-04` of MITK from https://phabricator.mitk.org/source/mitk.git (not yet available on GitHub) -2. Clone MITK-ProjectTemplate +1. Clone [MITK](https://github.com/MITK/MITK) and checkout the latest release tag or at least the stable master branch +2. Clone MITK-ProjectTemplate and checkout the matching tag or branch 3. Configure the MITK superbuild and set the CMake cache variable `MITK_EXTENSION_DIRS` to your working copy of the project template 4. Generate and build the MITK superbuild -The project template is integrated right into the MITK superbuild and MITK build. Thus you can extend MITK with your own modules, plugins, command-line apps, and external projects without touching the MITK source code. There is no need for a super-superbuild anymore as compared to earlier versions of the project template. +The project template is virtually integrated right into the MITK superbuild and MITK build as if it would be part of MITK. You can extend MITK with your own modules, plugins, command-line apps, and external projects without touching the MITK source code resp. repository. Supported platforms and other requirements ------------------------------------------ See the [MITK documentation](http://docs.mitk.org/2018.04/). License ------- Copyright (c) [German Cancer Research Center (DKFZ)](https://www.dkfz.de)
All rights reserved. The MITK-ProjectTemplate is part of [MITK](https://github.com/MITK/MITK) and as such available as free open-source software under a [3-clause BSD license](https://github.com/MITK/MITK-ProjectTemplate/blob/master/LICENSE).