Skip to content

Commit 949dfa8

Browse files
author
TEMAMAR
committed
MT-1000 implement mustache template renderer #comment finalize the release tag
1 parent d8ebf8e commit 949dfa8

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,17 @@
66

77
<groupId>de.microtema</groupId>
88
<artifactId>github-workflows-maven-plugin</artifactId>
9-
<version>2.0.1-SNAPSHOT</version>
9+
<version>2.0.1</version>
1010
<packaging>maven-plugin</packaging>
1111

1212
<name>GitHub Workflows Maven-Plugin</name>
1313
<description>GitHub CI generator</description>
1414
<url>http://maven.apache.org</url>
1515

1616
<properties>
17-
<java.version>17</java.version>
17+
<java.version>1.8</java.version>
18+
<maven.compiler.source.version>1.8</maven.compiler.source.version>
19+
<maven.compiler.target.version>1.8</maven.compiler.target.version>
1820
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1921
<maven.source.plugin>2.2.1</maven.source.plugin>
2022
<maven.compiler.plugin>3.8.1</maven.compiler.plugin>

src/main/java/de/microtema/maven/plugin/github/workflow/PipelineGeneratorUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ public static boolean isPrivateNetwork(String stageName) {
340340
}
341341

342342
/**
343-
* convert integration-test -> IT
343+
* Convert integration-test to IT
344344
*
345345
* @param testType may not be null
346346
* @return String

0 commit comments

Comments
 (0)