This is an automated email from the ASF dual-hosted git repository. ardovm pushed a commit to branch scons-build in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit 054fba07201ae2f6de5174a15f02564075968a09 Author: Arrigo Marchiori <[email protected]> AuthorDate: Fri Sep 10 20:58:10 2021 +0200 Set gotoSCons' JAR entry point. So we do not have to indicate it every time we launch gotoSCons --- gotoSCons/pom.xml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/gotoSCons/pom.xml b/gotoSCons/pom.xml index 8a758f0..7dba53c 100644 --- a/gotoSCons/pom.xml +++ b/gotoSCons/pom.xml @@ -15,7 +15,19 @@ <target>1.7</target> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifest> + <addClasspath>true</addClasspath> + <mainClass>org.apache.openoffice.gotoSCons.GBuildConverter</mainClass> + </manifest> + </archive> + </configuration> + </plugin> </plugins> </build> <name>gotoSCons</name> -</project> \ No newline at end of file +</project>
