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

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