Skip to content

Commit 87a8842

Browse files
committed
Using short temp folder on Windows.
1 parent ae1d0f4 commit 87a8842

File tree

1 file changed

+35
-2
lines changed

1 file changed

+35
-2
lines changed

pom.xml

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>net.finmath</groupId>
55
<artifactId>finmath-experiments</artifactId>
6-
<version>1.0.10-SNAPSHOT</version>
6+
<version>1.0.11-SNAPSHOT</version>
77

88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -473,6 +473,39 @@
473473
<pack.type>DEB</pack.type>
474474
</properties>
475475
</profile>
476+
477+
<profile>
478+
<id>windows-only-temp</id>
479+
<activation>
480+
<os>
481+
<family>Windows</family>
482+
</os>
483+
</activation>
484+
<build>
485+
<plugins>
486+
<plugin>
487+
<groupId>org.panteleyev</groupId>
488+
<artifactId>jpackage-maven-plugin</artifactId>
489+
<version>1.7.1</version>
490+
<executions>
491+
<execution>
492+
<id>make-installer</id>
493+
<configuration>
494+
<additionalOptions>
495+
<additionalOption>--vendor</additionalOption>
496+
<additionalOption>finmath.net</additionalOption>
497+
<additionalOption>--verbose</additionalOption>
498+
<additionalOption>--temp</additionalOption>
499+
<additionalOption>D:\t</additionalOption>
500+
</additionalOptions>
501+
</configuration>
502+
</execution>
503+
</executions>
504+
</plugin>
505+
</plugins>
506+
</build>
507+
</profile>
508+
476509
</profiles>
477510

478511
<repositories>
@@ -488,7 +521,7 @@
488521
<url>https://github.com/finmath/finmath-experiments</url>
489522
<connection>scm:git:https://github.com/finmath/finmath-experiments.git</connection>
490523
<developerConnection>scm:git:https://github.com/finmath/finmath-experiments.git</developerConnection>
491-
<tag>HEAD</tag>
524+
<tag>v1.0.10</tag>
492525
</scm>
493526

494527
</project>

0 commit comments

Comments
 (0)