source: trunk/autoquest-ui-swt/pom.xml @ 1495

Last change on this file since 1495 was 1495, checked in by pharms, 10 years ago
  • state of the HCSE 2014 Paper. An appropriate tag will follow.
  • Property svn:mime-type set to text/plain
File size: 6.2 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <parent>
7        <groupId>de.ugoe.cs.autoquest</groupId>
8        <artifactId>autoquest</artifactId>
9        <version>0.0.1-SNAPSHOT</version>
10    </parent>
11    <modelVersion>4.0.0</modelVersion>
12    <artifactId>autoquest-ui-swt</artifactId>
13    <name>autoquest-ui-swt</name>
14    <licenses>
15        <license>
16            <name>The Apache Software License, Version 2.0</name>
17            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18        </license>
19    </licenses>
20    <scm>
21        <url>${autoquest-scm-trunk-dir}/autoquest-ui-swt</url>
22    </scm>
23    <repositories>
24        <repository>
25            <id>swt-repo</id>
26            <url>https://swt-repo.googlecode.com/svn/repo</url>
27        </repository>
28    </repositories>
29    <dependencies>
30        <dependency>
31            <groupId>de.ugoe.cs</groupId>
32            <artifactId>java-utils</artifactId>
33            <version>0.0.1-SNAPSHOT</version>
34        </dependency>
35        <dependency>
36            <groupId>de.ugoe.cs.autoquest</groupId>
37            <artifactId>autoquest-core-events</artifactId>
38            <version>${project.parent.version}</version>
39        </dependency>
40        <dependency>
41            <groupId>de.ugoe.cs.autoquest</groupId>
42            <artifactId>autoquest-core-assertions</artifactId>
43            <version>${project.parent.version}</version>
44        </dependency>
45        <dependency>
46            <groupId>de.ugoe.cs.autoquest</groupId>
47            <artifactId>autoquest-core-usageprofiles</artifactId>
48            <version>${project.parent.version}</version>
49        </dependency>
50        <dependency>
51            <groupId>de.ugoe.cs.autoquest</groupId>
52            <artifactId>autoquest-core-tasktrees</artifactId>
53            <version>${project.parent.version}</version>
54        </dependency>
55        <dependency>
56            <groupId>de.ugoe.cs.autoquest</groupId>
57            <artifactId>autoquest-core-usability</artifactId>
58            <version>${project.parent.version}</version>
59        </dependency>
60        <dependency>
61            <groupId>${swt.groupId}</groupId>
62            <artifactId>${swt.artifactId}</artifactId>
63            <version>3.8</version>
64        </dependency>
65        <dependency>
66            <groupId>org.eclipse</groupId>
67            <artifactId>ui-forms</artifactId>
68            <version>3.5</version>
69        </dependency>
70    </dependencies>
71
72    <profiles>
73        <profile>
74            <id>Windows-x86</id>
75            <activation>
76                <os>
77                    <family>windows</family>
78                    <arch>x86</arch>
79                </os>
80            </activation>
81            <properties>
82                <swt.groupId>org.eclipse.swt</swt.groupId>
83                <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
84            </properties>
85        </profile>
86        <profile>
87            <id>Windows-amd64</id>
88            <activation>
89                <os>
90                    <family>windows</family>
91                    <arch>amd64</arch>
92                </os>
93            </activation>
94            <properties>
95                <swt.groupId>org.eclipse.swt</swt.groupId>
96                <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
97            </properties>
98        </profile>
99        <profile>
100            <id>Linux-x86</id>
101            <activation>
102                <os>
103                    <family>linux</family>
104                    <arch>x86</arch>
105                </os>
106            </activation>
107            <properties>
108                <swt.groupId>org.eclipse.swt</swt.groupId>
109                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
110            </properties>
111        </profile>
112        <profile>
113            <id>Linux-i386</id>
114            <activation>
115                <os>
116                    <family>linux</family>
117                    <arch>i386</arch>
118                </os>
119            </activation>
120            <properties>
121                <swt.groupId>org.eclipse.swt</swt.groupId>
122                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
123            </properties>
124        </profile>
125        <profile>
126            <id>Linux-x86_64</id>
127            <activation>
128                <os>
129                    <family>linux</family>
130                    <arch>x86_64</arch>
131                </os>
132            </activation>
133            <properties>
134                <swt.groupId>org.eclipse.swt</swt.groupId>
135                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
136            </properties>
137        </profile>
138        <profile>
139            <id>Linux-amd64</id>
140            <activation>
141                <os>
142                    <family>linux</family>
143                    <arch>amd64</arch>
144                </os>
145            </activation>
146            <properties>
147                <swt.groupId>org.eclipse.swt</swt.groupId>
148                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
149            </properties>
150        </profile>
151        <profile>
152            <id>Linux-ppc64</id>
153            <activation>
154                <os>
155                    <family>linux</family>
156                    <arch>ppc64</arch>
157                </os>
158            </activation>
159            <properties>
160                <swt.groupId>org.eclipse.swt</swt.groupId>
161                <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
162            </properties>
163        </profile>
164    </profiles>
165    <build>
166        <plugins>
167            <plugin>
168                <groupId>org.apache.maven.plugins</groupId>
169                <artifactId>maven-jar-plugin</artifactId>
170                <configuration>
171                    <archive>
172                        <manifest>
173                            <addClasspath>true</addClasspath>
174                        </manifest>
175                    </archive>
176                </configuration>
177            </plugin>
178        </plugins>
179    </build>
180</project>
Note: See TracBrowser for help on using the repository browser.