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

Last change on this file since 2182 was 2182, checked in by pharms, 7 years ago

update to Java 1.8

  • Property svn:mime-type set to text/plain
File size: 6.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>${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            </properties>
82        </profile>
83        <profile>
84            <id>Windows-amd64</id>
85            <activation>
86                <os>
87                    <family>windows</family>
88                    <arch>amd64</arch>
89                </os>
90            </activation>
91            <properties>
92                <swt.groupId>org.eclipse.swt</swt.groupId>
93                <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
94            </properties>
95        </profile>
96        <profile>
97            <id>Linux-x86</id>
98            <activation>
99                <os>
100                    <family>linux</family>
101                    <arch>x86</arch>
102                </os>
103            </activation>
104            <properties>
105                <swt.groupId>org.eclipse.swt</swt.groupId>
106                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
107            </properties>
108        </profile>
109        <profile>
110            <id>Linux-i386</id>
111            <activation>
112                <os>
113                    <family>linux</family>
114                    <arch>i386</arch>
115                </os>
116            </activation>
117            <properties>
118                <swt.groupId>org.eclipse.swt</swt.groupId>
119                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
120            </properties>
121        </profile>
122        <profile>
123            <id>Linux-x86_64</id>
124            <activation>
125                <os>
126                    <family>linux</family>
127                    <arch>x86_64</arch>
128                </os>
129            </activation>
130            <properties>
131                <swt.groupId>org.eclipse.swt</swt.groupId>
132                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
133            </properties>
134        </profile>
135        <profile>
136            <id>Linux-amd64</id>
137            <activation>
138                <os>
139                    <family>linux</family>
140                    <arch>amd64</arch>
141                </os>
142            </activation>
143            <properties>
144                <swt.groupId>org.eclipse.swt</swt.groupId>
145                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
146            </properties>
147        </profile>
148        <profile>
149            <id>Linux-ppc64</id>
150            <activation>
151                <os>
152                    <family>linux</family>
153                    <arch>ppc64</arch>
154                </os>
155            </activation>
156            <properties>
157                <swt.groupId>org.eclipse.swt</swt.groupId>
158                <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
159            </properties>
160        </profile>
161    </profiles>
162    <build>
163        <plugins>
164            <plugin>
165                <groupId>org.apache.maven.plugins</groupId>
166                <artifactId>maven-jar-plugin</artifactId>
167                <configuration>
168                    <archive>
169                        <manifest>
170                            <addClasspath>true</addClasspath>
171                        </manifest>
172                    </archive>
173                </configuration>
174            </plugin>
175        </plugins>
176    </build>
177</project>
Note: See TracBrowser for help on using the repository browser.