Merge branch 'bug/win10HiDPI' of github.com:jzy3d/jzy3d-api into bug/win10HiDPI

This commit is contained in:
Martin Pernollet 2022-02-21 18:05:18 +01:00
commit f70676cdca
1 changed files with 33 additions and 33 deletions

View File

@ -1,6 +1,4 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
@ -51,36 +49,6 @@
<profiles>
<!-- https://maven.apache.org/guides/introduction/introduction-to-profiles.html
https://stackoverflow.com/questions/19023109/values-for-os-family-in-maven-profile-activation-condition -->
<profile>
<id>Windows</id>
<activation>
<os>
<family>Windows</family>
<!-- <name>Windows XP</name> <arch>x86</arch> <version>5.1.2600</version> -->
</os>
</activation>
<dependencies>
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.swt.win32.win32.x86_64</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>Unix</id>
<activation>
<os>
<family>unix</family>
</os>
</activation>
<dependencies>
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>MacOS x86_64</id>
@ -113,6 +81,38 @@
</dependency>
</dependencies>
</profile>
<profile>
<id>Windows</id>
<activation>
<os>
<family>Windows</family>
<!-- <name>Windows XP</name> <arch>x86</arch> <version>5.1.2600</version> -->
</os>
</activation>
<dependencies>
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.swt.win32.win32.x86_64</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>Unix</id>
<activation>
<os>
<family>unix</family>
</os>
</activation>
<dependencies>
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
</project>