You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by th...@apache.org on 2020/11/14 01:15:34 UTC

[tapestry-5] branch java9modules updated: TAP5-2641: fixing migrator tool manifest file

This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch java9modules
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/java9modules by this push:
     new b176d1f  TAP5-2641: fixing migrator tool manifest file
b176d1f is described below

commit b176d1fb9e4284cfa2d93eb3f5235e6a4e751b12
Author: Thiago H. de Paula Figueiredo <th...@arsmachina.com.br>
AuthorDate: Fri Nov 13 22:15:12 2020 -0300

    TAP5-2641: fixing migrator tool manifest file
---
 build.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/build.gradle b/build.gradle
index 3ee05d5..3266f72 100755
--- a/build.gradle
+++ b/build.gradle
@@ -232,6 +232,9 @@ subprojects {
         }
         manifest {
         	attributes("Automatic-Module-Name": "org.apache.tapestry." + projectDir.getName().replaceAll("5", ""))
+        	if (projectDir.getName().equals("tapestry-version-migrator")) {
+        		attributes("Main-Class": "org.apache.tapestry5.versionmigrator.Main")
+        	}
         }
     }