2010-09-19 20:02:18 +00:00
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2011-12-30 23:52:04 +00:00
|
|
|
<artifactId>vasc-frontend</artifactId>
|
2011-12-30 23:07:21 +00:00
|
|
|
<groupId>net.forwardfire.vasc</groupId>
|
2013-09-20 17:18:39 +00:00
|
|
|
<version>0.4.2-SNAPSHOT</version>
|
2010-09-19 20:02:18 +00:00
|
|
|
</parent>
|
|
|
|
<artifactId>vasc-frontend-swt</artifactId>
|
2011-03-06 21:27:43 +00:00
|
|
|
<name>vasc-frontend-swt</name>
|
|
|
|
<description>vasc-frontend-swt</description>
|
2010-09-19 20:02:18 +00:00
|
|
|
<dependencies>
|
2012-12-02 13:40:18 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.forwardfire.vasc</groupId>
|
|
|
|
<artifactId>vasc-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2010-09-19 20:02:18 +00:00
|
|
|
</dependency>
|
2017-06-10 00:22:01 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.forwardfire.vasc</groupId>
|
|
|
|
<artifactId>vasc-frontend-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2010-09-19 20:02:18 +00:00
|
|
|
<!-- SWT depency TODO: linux only, wait for 3.4 !!
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.swt.gtk.linux</groupId>
|
|
|
|
<artifactId>x86</artifactId>
|
|
|
|
<version>3.3.0-v3346</version>
|
|
|
|
<scope>compile</scope>
|
2011-01-10 21:09:14 +00:00
|
|
|
<optional />
|
2010-09-19 20:02:18 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse</groupId>
|
|
|
|
<artifactId>jface</artifactId>
|
2012-06-04 20:49:12 +00:00
|
|
|
<version>${jface.version}</version>
|
2010-09-19 20:02:18 +00:00
|
|
|
<scope>compile</scope>
|
2011-01-10 21:09:14 +00:00
|
|
|
<optional />
|
2010-09-19 20:02:18 +00:00
|
|
|
</dependency>
|
|
|
|
-->
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse</groupId>
|
|
|
|
<artifactId>jface</artifactId>
|
2012-06-04 20:49:12 +00:00
|
|
|
<version>${jface.version}</version>
|
2010-09-19 20:02:18 +00:00
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-01-03 01:46:03 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.odysseus.juel</groupId>
|
|
|
|
<artifactId>juel</artifactId>
|
|
|
|
<version>${juel.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-05-28 12:16:03 +00:00
|
|
|
<groupId>net.forwardfire.vasc.backend</groupId>
|
2012-01-03 01:46:03 +00:00
|
|
|
<artifactId>vasc-backend-ldap</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-05-28 12:16:03 +00:00
|
|
|
<groupId>net.forwardfire.vasc.backend</groupId>
|
2012-01-03 01:46:03 +00:00
|
|
|
<artifactId>vasc-backend-mongodb</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-05-28 12:16:03 +00:00
|
|
|
<groupId>net.forwardfire.vasc.backend</groupId>
|
2012-01-03 01:46:03 +00:00
|
|
|
<artifactId>vasc-backend-jdbc</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-01-22 07:16:15 +00:00
|
|
|
<dependency>
|
2012-06-04 20:49:12 +00:00
|
|
|
<groupId>net.forwardfire.vasc.test</groupId>
|
2013-09-20 17:18:39 +00:00
|
|
|
<artifactId>vasc-test-frontend</artifactId>
|
2012-01-22 07:16:15 +00:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-01-03 01:46:03 +00:00
|
|
|
|
2010-09-19 20:02:18 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<!-- Eclipse OS-specific dependencies -->
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>linux-x86</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<arch>i386</arch>
|
|
|
|
<family>unix</family>
|
|
|
|
<name>linux</name>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.swt.gtk.linux</groupId>
|
|
|
|
<artifactId>x86</artifactId>
|
|
|
|
<version>[3.2.0,4.0.0)</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>linux-x86_64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<arch>amd64</arch>
|
|
|
|
<family>unix</family>
|
|
|
|
<name>linux</name>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.swt.gtk.linux</groupId>
|
|
|
|
<artifactId>x86_64</artifactId>
|
|
|
|
<version>[3.2.0,4.0.0)</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>solaris-sparc</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<arch>sparc</arch>
|
|
|
|
<family>unix</family>
|
|
|
|
<name>SunOS</name>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.swt.gtk.solaris</groupId>
|
|
|
|
<artifactId>sparc</artifactId>
|
|
|
|
<version>[3.2.0,4.0.0)</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>macosx</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<family>unix</family>
|
|
|
|
<name>mac os x</name>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.swt.carbon</groupId>
|
|
|
|
<artifactId>macosx</artifactId>
|
|
|
|
<version>[3.2.0,4.0.0)</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>win32</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<arch>x86</arch>
|
|
|
|
<family>windows</family>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.swt.win32.win32</groupId>
|
|
|
|
<artifactId>x86</artifactId>
|
|
|
|
<version>[3.2.0,4.0.0)</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>win64</id>
|
|
|
|
<activation>
|
|
|
|
<os>
|
|
|
|
<arch>amd64</arch>
|
|
|
|
<family>windows</family>
|
|
|
|
</os>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.swt.win32.win32</groupId>
|
|
|
|
<artifactId>x86_64</artifactId>
|
|
|
|
<version>[3.2.0,4.0.0)</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
</project>
|