From d2620b314f8b62ceb8e1a575de8d272cc2fa0fdd Mon Sep 17 00:00:00 2001 From: Gaetano Piazzolla Date: Wed, 28 Oct 2020 15:39:59 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index da2e30e..6320b7c 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,12 @@ Generates the standard SPRING layered CRUD architecture starting from JPA entiti 2) services 3) controller -##How to: -#####1- clone this repository and run +## How to: +##### 1- clone this repository and run ```shell script gradlew install ``` -#####2- configure build.gradle as follow: +##### 2- configure build.gradle as follow: ```groovy buildscript { @@ -29,7 +29,7 @@ layer3gen { configPath = 'src/main/resources/3layer-settings.yml' } ``` -#####3- Create 3layer-settings.yml in your resource folder. +##### 3- Create 3layer-settings.yml in your resource folder. Example of 3layer-setting.yml : ```yml @@ -47,10 +47,10 @@ outputPackages: controllers: com.gae.piaz.autogen.controllergen ``` -#####4- run +##### 4- run ```shell script gradlew layer3gen ``` ## Example: -To know what kind of structure will be generated check the example project which uses this repository in the /demo folder. \ No newline at end of file +To know what kind of structure will be generated check the example project which uses this repository in the /demo folder.