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

Last change on this file since 1541 was 1541, checked in by pharms, 10 years ago

[maven-release-plugin] prepare for next development iteration

  • 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.1.1-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    <repositories>
22        <repository>
23            <id>swt-repo</id>
24            <url>https://swt-repo.googlecode.com/svn/repo</url>
25        </repository>
26    </repositories>
27    <dependencies>
28        <dependency>
29            <groupId>de.ugoe.cs</groupId>
30            <artifactId>java-utils</artifactId>
31            <version>0.1.1-SNAPSHOT</version>
32        </dependency>
33        <dependency>
34            <groupId>de.ugoe.cs.autoquest</groupId>
35            <artifactId>autoquest-core-events</artifactId>
36            <version>${project.parent.version}</version>
37        </dependency>
38        <dependency>
39            <groupId>de.ugoe.cs.autoquest</groupId>
40            <artifactId>autoquest-core-assertions</artifactId>
41            <version>${project.parent.version}</version>
42        </dependency>
43        <dependency>
44            <groupId>de.ugoe.cs.autoquest</groupId>
45            <artifactId>autoquest-core-usageprofiles</artifactId>
46            <version>${project.parent.version}</version>
47        </dependency>
48        <dependency>
49            <groupId>de.ugoe.cs.autoquest</groupId>
50            <artifactId>autoquest-core-tasktrees</artifactId>
51            <version>${project.parent.version}</version>
52        </dependency>
53        <dependency>
54            <groupId>de.ugoe.cs.autoquest</groupId>
55            <artifactId>autoquest-core-usability</artifactId>
56            <version>${project.parent.version}</version>
57        </dependency>
58        <dependency>
59            <groupId>${swt.groupId}</groupId>
60            <artifactId>${swt.artifactId}</artifactId>
61            <version>3.8</version>
62        </dependency>
63        <dependency>
64            <groupId>org.eclipse</groupId>
65            <artifactId>ui-forms</artifactId>
66            <version>3.5</version>
67        </dependency>
68    </dependencies>
69
70    <profiles>
71        <profile>
72            <id>Windows-x86</id>
73            <activation>
74                <os>
75                    <family>windows</family>
76                    <arch>x86</arch>
77                </os>
78            </activation>
79            <properties>
80                <swt.groupId>org.eclipse.swt</swt.groupId>
81                <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
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            </properties>
96        </profile>
97        <profile>
98            <id>Linux-x86</id>
99            <activation>
100                <os>
101                    <family>linux</family>
102                    <arch>x86</arch>
103                </os>
104            </activation>
105            <properties>
106                <swt.groupId>org.eclipse.swt</swt.groupId>
107                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
108            </properties>
109        </profile>
110        <profile>
111            <id>Linux-i386</id>
112            <activation>
113                <os>
114                    <family>linux</family>
115                    <arch>i386</arch>
116                </os>
117            </activation>
118            <properties>
119                <swt.groupId>org.eclipse.swt</swt.groupId>
120                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
121            </properties>
122        </profile>
123        <profile>
124            <id>Linux-x86_64</id>
125            <activation>
126                <os>
127                    <family>linux</family>
128                    <arch>x86_64</arch>
129                </os>
130            </activation>
131            <properties>
132                <swt.groupId>org.eclipse.swt</swt.groupId>
133                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
134            </properties>
135        </profile>
136        <profile>
137            <id>Linux-amd64</id>
138            <activation>
139                <os>
140                    <family>linux</family>
141                    <arch>amd64</arch>
142                </os>
143            </activation>
144            <properties>
145                <swt.groupId>org.eclipse.swt</swt.groupId>
146                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
147            </properties>
148        </profile>
149        <profile>
150            <id>Linux-ppc64</id>
151            <activation>
152                <os>
153                    <family>linux</family>
154                    <arch>ppc64</arch>
155                </os>
156            </activation>
157            <properties>
158                <swt.groupId>org.eclipse.swt</swt.groupId>
159                <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
160            </properties>
161        </profile>
162    </profiles>
163    <build>
164        <plugins>
165            <plugin>
166                <groupId>org.apache.maven.plugins</groupId>
167                <artifactId>maven-jar-plugin</artifactId>
168                <configuration>
169                    <archive>
170                        <manifest>
171                            <addClasspath>true</addClasspath>
172                        </manifest>
173                    </archive>
174                </configuration>
175            </plugin>
176        </plugins>
177    </build>
178</project>
Note: See TracBrowser for help on using the repository browser.