[526] | 1 | <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">
|
---|
[757] | 2 | <parent>
|
---|
[920] | 3 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 4 | <artifactId>autoquest</artifactId>
|
---|
[757] | 5 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 6 | </parent>
|
---|
[526] | 7 | <modelVersion>4.0.0</modelVersion>
|
---|
[920] | 8 | <artifactId>autoquest-ui-swt</artifactId>
|
---|
| 9 | <name>autoquest-ui-swt</name>
|
---|
[927] | 10 | <licenses>
|
---|
| 11 | <license>
|
---|
| 12 | <name>The Apache Software License, Version 2.0</name>
|
---|
| 13 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
---|
| 14 | </license>
|
---|
| 15 | </licenses>
|
---|
[757] | 16 | <scm>
|
---|
[920] | 17 | <url>${autoquest-scm-trunk-dir}/autoquest-ui-swt</url>
|
---|
[526] | 18 | </scm>
|
---|
| 19 | <repositories>
|
---|
| 20 | <repository>
|
---|
| 21 | <id>swt-repo</id>
|
---|
| 22 | <url>https://swt-repo.googlecode.com/svn/repo</url>
|
---|
| 23 | </repository>
|
---|
| 24 | </repositories>
|
---|
| 25 | <dependencies>
|
---|
| 26 | <dependency>
|
---|
| 27 | <groupId>de.ugoe.cs</groupId>
|
---|
| 28 | <artifactId>java-utils</artifactId>
|
---|
| 29 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 30 | </dependency>
|
---|
| 31 | <dependency>
|
---|
[920] | 32 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 33 | <artifactId>autoquest-core-events</artifactId>
|
---|
[794] | 34 | <version>${project.parent.version}</version>
|
---|
[526] | 35 | </dependency>
|
---|
| 36 | <dependency>
|
---|
[920] | 37 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 38 | <artifactId>autoquest-core-assertions</artifactId>
|
---|
[794] | 39 | <version>${project.parent.version}</version>
|
---|
[526] | 40 | </dependency>
|
---|
| 41 | <dependency>
|
---|
[920] | 42 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 43 | <artifactId>autoquest-core-usageprofiles</artifactId>
|
---|
[794] | 44 | <version>${project.parent.version}</version>
|
---|
[526] | 45 | </dependency>
|
---|
| 46 | <dependency>
|
---|
| 47 | <groupId>${swt.groupId}</groupId>
|
---|
| 48 | <artifactId>${swt.artifactId}</artifactId>
|
---|
| 49 | <version>3.8</version>
|
---|
| 50 | </dependency>
|
---|
| 51 | <dependency>
|
---|
| 52 | <groupId>org.eclipse</groupId>
|
---|
| 53 | <artifactId>ui-forms</artifactId>
|
---|
| 54 | <version>3.5</version>
|
---|
| 55 | </dependency>
|
---|
| 56 | </dependencies>
|
---|
| 57 |
|
---|
| 58 | <profiles>
|
---|
| 59 | <profile>
|
---|
| 60 | <id>Windows x86</id>
|
---|
| 61 | <activation>
|
---|
| 62 | <os>
|
---|
| 63 | <family>windows</family>
|
---|
| 64 | <arch>x86</arch>
|
---|
| 65 | </os>
|
---|
| 66 | </activation>
|
---|
| 67 | <properties>
|
---|
| 68 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 69 | <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
|
---|
| 70 | </properties>
|
---|
| 71 | </profile>
|
---|
| 72 | <profile>
|
---|
| 73 | <id>Windows amd64</id>
|
---|
| 74 | <activation>
|
---|
| 75 | <os>
|
---|
| 76 | <family>windows</family>
|
---|
| 77 | <arch>amd64</arch>
|
---|
| 78 | </os>
|
---|
| 79 | </activation>
|
---|
| 80 | <properties>
|
---|
| 81 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 82 | <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
|
---|
| 83 | </properties>
|
---|
| 84 | </profile>
|
---|
| 85 | <profile>
|
---|
| 86 | <id>Linux x86</id>
|
---|
| 87 | <activation>
|
---|
| 88 | <os>
|
---|
| 89 | <family>linux</family>
|
---|
| 90 | <arch>x86</arch>
|
---|
| 91 | </os>
|
---|
| 92 | </activation>
|
---|
| 93 | <properties>
|
---|
| 94 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 95 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
|
---|
| 96 | </properties>
|
---|
| 97 | </profile>
|
---|
| 98 | <profile>
|
---|
| 99 | <id>Linux i386</id>
|
---|
| 100 | <activation>
|
---|
| 101 | <os>
|
---|
| 102 | <family>linux</family>
|
---|
| 103 | <arch>i386</arch>
|
---|
| 104 | </os>
|
---|
| 105 | </activation>
|
---|
| 106 | <properties>
|
---|
| 107 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 108 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
|
---|
| 109 | </properties>
|
---|
| 110 | </profile>
|
---|
| 111 | <profile>
|
---|
| 112 | <id>Linux x86_64</id>
|
---|
| 113 | <activation>
|
---|
| 114 | <os>
|
---|
| 115 | <family>linux</family>
|
---|
| 116 | <arch>x86_64</arch>
|
---|
| 117 | </os>
|
---|
| 118 | </activation>
|
---|
| 119 | <properties>
|
---|
| 120 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 121 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
|
---|
| 122 | </properties>
|
---|
| 123 | </profile>
|
---|
| 124 | <profile>
|
---|
| 125 | <id>Linux amd64</id>
|
---|
| 126 | <activation>
|
---|
| 127 | <os>
|
---|
| 128 | <family>linux</family>
|
---|
| 129 | <arch>amd64</arch>
|
---|
| 130 | </os>
|
---|
| 131 | </activation>
|
---|
| 132 | <properties>
|
---|
| 133 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 134 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
|
---|
| 135 | </properties>
|
---|
| 136 | </profile>
|
---|
| 137 | <profile>
|
---|
| 138 | <id>Linux ppc64</id>
|
---|
| 139 | <activation>
|
---|
| 140 | <os>
|
---|
| 141 | <family>linux</family>
|
---|
| 142 | <arch>ppc64</arch>
|
---|
| 143 | </os>
|
---|
| 144 | </activation>
|
---|
| 145 | <properties>
|
---|
| 146 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 147 | <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
|
---|
| 148 | </properties>
|
---|
| 149 | </profile>
|
---|
| 150 | </profiles>
|
---|
| 151 | </project> |
---|