This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jtimer. See http://git.chorem.org/jtimer.git commit dd8b1ccb4a406f1cd9b9ff7922d33fb04ca9e325 Author: Eric Chatellier <chatellier@codelutin.com> Date: Tue Mar 8 11:38:20 2016 +0100 Fix meta info for window build --- pom.xml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pom.xml b/pom.xml index f2e8538..8594ace 100644 --- a/pom.xml +++ b/pom.xml @@ -358,6 +358,19 @@ <build> <plugins> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>1.10</version> + <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.8</version> @@ -376,7 +389,20 @@ <errTitle>${project.name}</errTitle> <jre> <minVersion>1.8.0</minVersion> + <maxHeapSize>100</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} - 2016 ${project.organization.name}</copyright> + <internalName>jtimer</internalName> + <originalFilename>jtimer.exe</originalFilename> + </versionInfo> </configuration> </execution> </executions> -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.