mirror of https://github.com/rusefi/jzy3d-api.git
switch to macos dependency for SWT.
This commit is contained in:
parent
f9ddc7eefd
commit
a247b78119
|
@ -1,5 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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 http://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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.jzy3d</groupId>
|
||||
<artifactId>jzy3d-swt</artifactId>
|
||||
|
@ -20,7 +21,7 @@
|
|||
<repository>
|
||||
<id>swt-repo</id>
|
||||
<url> http://maven-eclipse.github.io/maven</url>
|
||||
<!--<url>https://swt-repo.googlecode.com/svn/repo/</url>-->
|
||||
<!--<url>https://swt-repo.googlecode.com/svn/repo/</url> -->
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
@ -30,19 +31,31 @@
|
|||
<artifactId>jzy3d-api</artifactId>
|
||||
<version>1.0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
||||
<!-- LINUX 64 -->
|
||||
<!-- <dependency>
|
||||
<groupId>org.eclipse.swt</groupId>
|
||||
<artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
|
||||
<version>4.3</version>
|
||||
</dependency>
|
||||
<!--<dependency> <groupId>org.eclipse.swt.win32.win32</groupId> <artifactId>x86</artifactId>
|
||||
<version>4.3</version> </dependency> -->
|
||||
</dependency> -->
|
||||
|
||||
<!-- MACOSX 64 -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.swt</groupId>
|
||||
<artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
|
||||
<artifactId>org.eclipse.swt.cocoa.macosx.x86_64</artifactId>
|
||||
<version>4.3</version>
|
||||
</dependency>
|
||||
|
||||
<!-- MACOSX 32 -->
|
||||
<dependency>
|
||||
<groupId>org.eclipse.swt</groupId>
|
||||
<artifactId>org.eclipse.swt.cocoa.macosx</artifactId>
|
||||
<version>4.3</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
|
|
Loading…
Reference in New Issue