branch develop updated (1406865 -> e7200ab)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git from 1406865 Up up up... new e7200ab Script de lancement sans fenêtre de terminal (Fixes #4744) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit e7200ab96182a363d961923e8b2d132685053274 Author: Tony CHEMIT <chemit@codelutin.com> Date: Tue Sep 13 19:26:22 2016 +0200 Script de lancement sans fenêtre de terminal (Fixes #4744) Summary of changes: application-swing/pom.xml | 50 +++++++++++++++++++++++++++++ application-swing/src/main/assembly/bin.xml | 1 + 2 files changed, 51 insertions(+) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit e7200ab96182a363d961923e8b2d132685053274 Author: Tony CHEMIT <chemit@codelutin.com> Date: Tue Sep 13 19:26:22 2016 +0200 Script de lancement sans fenêtre de terminal (Fixes #4744) --- application-swing/pom.xml | 50 +++++++++++++++++++++++++++++ application-swing/src/main/assembly/bin.xml | 1 + 2 files changed, 51 insertions(+) diff --git a/application-swing/pom.xml b/application-swing/pom.xml index f8ade08..f5ff810 100644 --- a/application-swing/pom.xml +++ b/application-swing/pom.xml @@ -776,6 +776,56 @@ </plugin> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <executions> + <execution> + <id>parse-version</id> + <goals> + <goal>parse-version</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>com.akathist.maven.plugins.launch4j</groupId> + <artifactId>launch4j-maven-plugin</artifactId> + <version>1.7.11</version> + <executions> + <execution> + <id>launch4j</id> + <phase>package</phase> + <goals> + <goal>launch4j</goal> + </goals> + <configuration> + <dontWrapJar>true</dontWrapJar> + <headerType>gui</headerType> + <outfile>target/observe.exe</outfile> + <jar>${project.build.finalName}.jar</jar> + <errTitle>${project.name}</errTitle> + <jre> + <minVersion>1.8.0</minVersion> + <maxHeapSize>256</maxHeapSize> + </jre> + <versionInfo> + <fileVersion>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0</fileVersion> + <txtFileVersion>${project.version}</txtFileVersion> + <fileDescription>${project.description}</fileDescription> + <productName>${project.name}</productName> + <productVersion>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0</productVersion> + <txtProductVersion>${project.version}</txtProductVersion> + <companyName>${project.organization.name}</companyName> + <copyright>${project.inceptionYear} 2009 - 2016 ${project.organization.name}</copyright> + <internalName>observe</internalName> + <originalFilename>observe.exe</originalFilename> + </versionInfo> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> diff --git a/application-swing/src/main/assembly/bin.xml b/application-swing/src/main/assembly/bin.xml index 0450ea6..41cc8e6 100644 --- a/application-swing/src/main/assembly/bin.xml +++ b/application-swing/src/main/assembly/bin.xml @@ -34,6 +34,7 @@ <fileMode>0755</fileMode> <includes> <include>${project.build.finalName}.jar</include> + <include>observe.exe</include> </includes> </fileSet> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm