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

Last change on this file since 2194 was 2194, checked in by pharms, 7 years ago
  • Property svn:mime-type set to text/plain
File size: 6.6 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>${swt.groupId}</groupId>
54            <artifactId>${swt.artifactId}</artifactId>
55            <version>4.3</version>
56        </dependency>
57        <dependency>
58            <groupId>org.eclipse</groupId>
59            <artifactId>ui-forms</artifactId>
60            <version>3.5</version>
61        </dependency>
62        <dependency>
63            <groupId>org.jfree</groupId>
64            <artifactId>jfreechart</artifactId>
65            <version>1.0.14</version>
66        </dependency>
67    </dependencies>
68
69    <profiles>
70        <profile>
71            <id>Windows-x86</id>
72            <activation>
73                <os>
74                    <family>windows</family>
75                    <arch>x86</arch>
76                </os>
77            </activation>
78            <properties>
79                <swt.groupId>org.eclipse.swt</swt.groupId>
80                <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
81                <envClassifier>Windows-x86</envClassifier>
82            </properties>
83        </profile>
84        <profile>
85            <id>Windows-amd64</id>
86            <activation>
87                <os>
88                    <family>windows</family>
89                    <arch>amd64</arch>
90                </os>
91            </activation>
92            <properties>
93                <swt.groupId>org.eclipse.swt</swt.groupId>
94                <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
95                <envClassifier>Windows-amd64</envClassifier>
96            </properties>
97        </profile>
98        <profile>
99            <id>Linux-x86</id>
100            <activation>
101                <os>
102                    <family>linux</family>
103                    <arch>x86</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                <envClassifier>Linux-x86</envClassifier>
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                <envClassifier>Linux-i386</envClassifier>
124            </properties>
125        </profile>
126        <profile>
127            <id>Linux-x86_64</id>
128            <activation>
129                <os>
130                    <family>linux</family>
131                    <arch>x86_64</arch>
132                </os>
133            </activation>
134            <properties>
135                <swt.groupId>org.eclipse.swt</swt.groupId>
136                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
137                <envClassifier>Linux-x86_64</envClassifier>
138            </properties>
139        </profile>
140        <profile>
141            <id>Linux-amd64</id>
142            <activation>
143                <os>
144                    <family>linux</family>
145                    <arch>amd64</arch>
146                </os>
147            </activation>
148            <properties>
149                <swt.groupId>org.eclipse.swt</swt.groupId>
150                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
151                <envClassifier>Linux-amd64</envClassifier>
152            </properties>
153        </profile>
154        <profile>
155            <id>Linux-ppc64</id>
156            <activation>
157                <os>
158                    <family>linux</family>
159                    <arch>ppc64</arch>
160                </os>
161            </activation>
162            <properties>
163                <swt.groupId>org.eclipse.swt</swt.groupId>
164                <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
165                <envClassifier>Linux-ppc64</envClassifier>
166            </properties>
167        </profile>
168    </profiles>
169    <build>
170        <plugins>
171            <plugin>
172                <groupId>org.apache.maven.plugins</groupId>
173                <artifactId>maven-jar-plugin</artifactId>
174                <configuration>
175                    <archive>
176                        <manifest>
177                            <addClasspath>true</addClasspath>
178                        </manifest>
179                    </archive>
180                    <classifier>${envClassifier}</classifier>
181                </configuration>
182            </plugin>
183        </plugins>
184    </build>
185</project>
Note: See TracBrowser for help on using the repository browser.