This is an automated email from the ASF dual-hosted git repository. bertty pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git
commit 375bfd7cf484e0b01b99638175e1a5cf74a60309 Author: Bertty Contreras-Rojas <[email protected]> AuthorDate: Thu Oct 14 18:24:27 2021 +0200 [RELEASE][PREPARATION] variable for the release phase Signed-off-by: bertty <[email protected]> --- pom.xml | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index d3436ac..3af0128 100644 --- a/pom.xml +++ b/pom.xml @@ -66,7 +66,7 @@ <connection>scm:git:https://gitbox.apache.org/repos/asf/incubator-wayang.git</connection> <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/incubator-wayang.git</developerConnection> <url>https://github.com/apache/incubator-wayang</url> - <tag>rel/0.6.0</tag> + <tag>v0.6.0</tag> </scm> <issueManagement> @@ -100,7 +100,7 @@ <maven.kotlin.skip>false</maven.kotlin.skip> <!-- Timestamp for the reproducible builds --> - <project.build.outputTimestamp>2021-10-05T17:51:55Z</project.build.outputTimestamp> + <project.build.outputTimestamp>2021-10-14T18:30:09Z</project.build.outputTimestamp> <assertj.version>3.17.2</assertj.version> <commons-io.version>2.5</commons-io.version> @@ -1443,7 +1443,32 @@ </execution> </executions> </plugin> - + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>3.2.0</version> + <configuration> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-release-plugin</artifactId> + <version>3.0.0-M4</version> + <configuration> + <autoVersionSubmodules>true</autoVersionSubmodules> + <autoResolveSnapshots>all</autoResolveSnapshots> + <releaseProfiles>apache-release</releaseProfiles> + <!--<pushChanges>false</pushChanges>--> + <!--<dryRun>true</dryRun>--> + <releaseVersion>0.6.0</releaseVersion> + <updateWorkingCopyVersions>false</updateWorkingCopyVersions> + <updateDependencies>false</updateDependencies> + <tag>wayang-0.6.0</tag> + <scmReleaseCommitComment>@{prefix} prepare release 0.6.0</scmReleaseCommitComment> + <tagNameFormat>apache-@{project.artifactId}-@{project.version}-incubating</tagNameFormat> + <tagNameFormat>v${project.version}</tagNameFormat> + </configuration> + </plugin> </plugins> </build>
