Giter VIP home page Giter VIP logo

swt-maven-repository's Introduction

swt-maven-repository

Maven repository for SWT and JFace.

Usage

  1. Set property "swt.artifactId":
<profiles>
	<profile>
		<id>Linux (x86/GTK)</id>
		<activation>
			<os>
				<name>Linux</name>
				<arch>i386</arch>
			</os>
		</activation>
		<properties>
			<swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
		</properties>
	</profile>
	<profile>
		<id>Linux (x86_64/GTK)</id>
		<activation>
			<os>
				<name>Linux</name>
				<arch>amd64</arch>
			</os>
		</activation>
		<properties>
			<swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
		</properties>
	</profile>
	<profile>
		<id>Windows (x86)</id>
		<activation>
			<os>
				<family>windows</family>
				<arch>x86</arch>
			</os>
		</activation>
		<properties>
			<swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
		</properties>
	</profile>
	<profile>
		<id>Windows (x86_64)</id>
		<activation>
			<os>
				<family>windows</family>
				<arch>x86_64</arch>
			</os>
		</activation>
		<properties>
			<swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
		</properties>
	</profile>
	<profile>
		<id>Mac OS X (x86/Cocoa)</id>
		<activation>
			<os>
				<family>macosx</family>
				<arch>i386</arch>
			</os>
		</activation>
		<properties>
			<swt.artifactId>org.eclipse.swt.cocoa.macosx</swt.artifactId>
		</properties>
	</profile>
	<profile>
		<id>Mac OS X (x86_64/Cocoa)</id>
		<activation>
			<os>
				<family>macosx</family>
				<arch>x86_64</arch>
			</os>
		</activation>
		<properties>
			<swt.artifactId>org.eclipse.swt.cocoa.macosx.x86_64</swt.artifactId>
		</properties>
	</profile>	
</profiles>
  1. Add SWT Maven repository:
<repositories>
	<repository>
		<id>swt-repo</id>
		<url>http://xianguang-zhou.github.io/swt-maven-repository/</url>
	</repository>
</repositories>
  1. Add SWT Maven dependency:
<dependencies>
	<dependency>
		<groupId>org.eclipse.swt</groupId>
		<artifactId>${swt.artifactId}</artifactId>
		<version>4.7.1</version>
	</dependency>
</dependencies>
  1. Add JFace Maven dependency(optional):
<dependencies>
	<dependency>
		<groupId>org.eclipse.jface</groupId>
		<artifactId>org.eclipse.jface</artifactId>
		<version>3.13.1.v20170810-0135</version>
	</dependency>
</dependencies>
  1. Add JFace data binding Maven dependency(optional):
<dependencies>
	<dependency>
		<groupId>org.eclipse.jface.databinding</groupId>
		<artifactId>org.eclipse.jface.databinding</artifactId>
		<version>1.8.100.v20170503-1507</version>
	</dependency>
</dependencies>

Version relationships between SWT and JFace

SWT JFace JFace Data Binding
4.7.1 3.13.1.v20170810-0135 1.8.100.v20170503-1507
4.4.2 3.10.2.v20141021-1035
4.3.2 3.9.1.v20130725-1141 1.6.200.v20130515-1857

swt-maven-repository's People

Contributors

xianguang-zhou avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.