-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates.cfg
15 lines (14 loc) · 929 Bytes
/
templates.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#---------------------------------------------------------
# Templates configuration file
# Values separated by ";"
# . value 1 : the label
# . value 2 : the file to be generated ( var allowed : ${BEANNAME}, ${BEANNAME_UC}, ${BEANNAME_LC} )
# . value 3 : the project folder where to generate ( var allowed : ${BEANNAME}, ${BEANNAME_UC}, ${BEANNAME_LC} )
# . value 4 : the template to use ( or 'resources' origin file or folder )
# . value 5 :
# - "1" for "ONLY ONE GENERATION" (independently of the number of entities)
# - "*" (or nothing) for "MULTIPLE GENERATIONS" (one generation for each entity)
# - "R" for "static resources" to copied
#---------------------------------------------------------
Jpa entity lombok ;${BEANNAME}.java ;${SRC}/${ROOT_PKG}/${BEANNAME_LC} ;JpaEntity_java.vm; *
Spring repository ;${BEANNAME}Repository.java ;${SRC}/${ROOT_PKG}/${BEANNAME_LC} ;SpringRepository_java.vm; *