Skip to content

Commit

Permalink
Merge branch 'release/1.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuflatland-lf committed Feb 15, 2021
2 parents 192ad12 + 35df1f6 commit 5a62859
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
Binary file modified latest/damascus.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/com/liferay/damascus/cli/Damascus.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@Slf4j
public class Damascus {

public final static String VERSION = "1.2.0"; // + "_" + LocalDateTime.now().toString();
public final static String VERSION = "1.2.1";// + "_" + LocalDateTime.now().toString();

/**
* Main
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/templates/7.0/valuables.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

<#assign camelcaseProjectName = "${damascus.projectName?replace(\"-\", \"\")}">
<#assign dashcaseProjectName = "${caseUtil.camelCaseToDashCase(camelcaseProjectName)}">
<#assign apiModulePath = "${createPath_val}/${dashcaseProjectName}-api">
<#assign serviceModulePath = "${createPath_val}/${dashcaseProjectName}-service">
<#assign webModulePath = "${createPath_val}/${dashcaseProjectName}-web">
<#assign apiModulePath = "${dashcaseProjectName}-api">
<#assign serviceModulePath = "${dashcaseProjectName}-service">
<#assign webModulePath = "${dashcaseProjectName}-web">

<#if application?exists>
<#assign capFirstModel = "${application.model?cap_first}">
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/templates/7.1/valuables.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

<#assign camelcaseProjectName = "${damascus.projectName?replace(\"-\", \"\")}">
<#assign dashcaseProjectName = "${caseUtil.camelCaseToDashCase(camelcaseProjectName)}">
<#assign apiModulePath = "${createPath_val}/${dashcaseProjectName}-api">
<#assign serviceModulePath = "${createPath_val}/${dashcaseProjectName}-service">
<#assign webModulePath = "${createPath_val}/${dashcaseProjectName}-web">
<#assign apiModulePath = "${dashcaseProjectName}-api">
<#assign serviceModulePath = "${dashcaseProjectName}-service">
<#assign webModulePath = "${dashcaseProjectName}-web">

<#if application?exists>
<#assign capFirstModel = "${application.model?cap_first}">
Expand Down
7 changes: 3 additions & 4 deletions src/main/resources/templates/7.2/valuables.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@

<#assign camelcaseProjectName = "${damascus.projectName?replace(\"-\", \"\")}">
<#assign dashcaseProjectName = "${caseUtil.camelCaseToDashCase(camelcaseProjectName)}">
<#assign projectPath = "${createPath_val}/${dashcaseProjectName}">
<#assign apiModulePath = "${projectPath}/${dashcaseProjectName}-api">
<#assign serviceModulePath = "${projectPath}/${dashcaseProjectName}-service">
<#assign webModulePath = "${projectPath}/${dashcaseProjectName}-web">
<#assign apiModulePath = "${dashcaseProjectName}-api">
<#assign serviceModulePath = "${dashcaseProjectName}-service">
<#assign webModulePath = "${dashcaseProjectName}-web">

<#if application?exists>
<#assign capFirstModel = "${application.model?cap_first}">
Expand Down

0 comments on commit 5a62859

Please sign in to comment.