Michael Hoennig 1916347490 Revert "adding AccessMappings SepaMandateDTO with tests + consequences (HOWTO)"
This reverts commit 328e809a because I want all changes of this HOWTO in a single commit.

Unfortunately due to the access filter, the SepaMandateIntTest failed with branch coverage, as some branches were not reachable anymore.
2019-04-29 11:23:05 +02:00
2019-04-09 15:18:11 +02:00
2019-04-02 10:23:40 +02:00
2019-04-26 11:55:42 +02:00

= hsadminNg Development

== Setting up the Development Environment

You'll often need to execute ./gradlew, therefore we suggest to define this alias:

alias gw='./gradlew'

== Building the Application with Test Execution

gw build

== Starting the Application

Either simply:

gw bootRun

or with a specific port:

SERVER_PORT=8081 ./gradlew bootRun

== Running JUnit tests with branch coverage

=== for IntelliJ IDEA

see: https://confluence.jetbrains.com/display/IDEADEV/IDEA+Coverage+Runner

Either apply it to specific test configurations or, better, delete the previous test configurations and amend the JUnit template.

== Git Workflow

The jhipster-generated git branch tracks the history of the JDL model file and the generated source code. The project has to be resetted to a clean state (without any generated entitites) before changes to the JDL file can be imported.

# Prepare/Cleanup Workspace

git checkout jhipster-generated
git reset --hard jdl-base
git clean -f -d
git checkout HEAD@{1} src/main/jdl/customer.jdl
git reset HEAD .

# Apply changes to the jdl file

# Invoke JHipster generator

jhipster import-jdl src/main/jdl/customer.jdl --force

# Let Git determine change set between most recent commit and the re-generated source

git reset --soft HEAD@{1}
git reset HEAD .
git add .

# Commit changeset

git commit -m '...'

# Merge changeset into master branch

git checkout master
git merge jhipster-generated
Description
No description provided
Readme 16 MiB
Languages
Java 86.2%
PLpgSQL 13.2%
Shell 0.5%
Python 0.1%