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

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

[maven-release-plugin] rollback the release of autoquest-release-0.1.0

  • Property svn:mime-type set to text/plain
File size: 6.3 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        <relativePath>../autoquest/pom.xml</relativePath>
11    </parent>
12    <modelVersion>4.0.0</modelVersion>
13    <artifactId>autoquest-ui-swt</artifactId>
14    <name>autoquest-ui-swt</name>
15    <licenses>
16        <license>
17            <name>The Apache Software License, Version 2.0</name>
18            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
19        </license>
20    </licenses>
21    <scm>
22        <url>${autoquest-scm-trunk-dir}/autoquest-ui-swt</url>
23    </scm>
24    <repositories>
25        <repository>
26            <id>swt-repo</id>
27            <url>https://swt-repo.googlecode.com/svn/repo</url>
28        </repository>
29    </repositories>
30    <dependencies>
31        <dependency>
32            <groupId>de.ugoe.cs</groupId>
33            <artifactId>java-utils</artifactId>
34            <version>0.0.1-SNAPSHOT</version>
35        </dependency>
36        <dependency>
37            <groupId>de.ugoe.cs.autoquest</groupId>
38            <artifactId>autoquest-core-events</artifactId>
39            <version>${project.parent.version}</version>
40        </dependency>
41        <dependency>
42            <groupId>de.ugoe.cs.autoquest</groupId>
43            <artifactId>autoquest-core-assertions</artifactId>
44            <version>${project.parent.version}</version>
45        </dependency>
46        <dependency>
47            <groupId>de.ugoe.cs.autoquest</groupId>
48            <artifactId>autoquest-core-usageprofiles</artifactId>
49            <version>${project.parent.version}</version>
50        </dependency>
51        <dependency>
52            <groupId>de.ugoe.cs.autoquest</groupId>
53            <artifactId>autoquest-core-tasktrees</artifactId>
54            <version>${project.parent.version}</version>
55        </dependency>
56        <dependency>
57            <groupId>de.ugoe.cs.autoquest</groupId>
58            <artifactId>autoquest-core-usability</artifactId>
59            <version>${project.parent.version}</version>
60        </dependency>
61        <dependency>
62            <groupId>${swt.groupId}</groupId>
63            <artifactId>${swt.artifactId}</artifactId>
64            <version>3.8</version>
65        </dependency>
66        <dependency>
67            <groupId>org.eclipse</groupId>
68            <artifactId>ui-forms</artifactId>
69            <version>3.5</version>
70        </dependency>
71    </dependencies>
72
73    <profiles>
74        <profile>
75            <id>Windows-x86</id>
76            <activation>
77                <os>
78                    <family>windows</family>
79                    <arch>x86</arch>
80                </os>
81            </activation>
82            <properties>
83                <swt.groupId>org.eclipse.swt</swt.groupId>
84                <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
85            </properties>
86        </profile>
87        <profile>
88            <id>Windows-amd64</id>
89            <activation>
90                <os>
91                    <family>windows</family>
92                    <arch>amd64</arch>
93                </os>
94            </activation>
95            <properties>
96                <swt.groupId>org.eclipse.swt</swt.groupId>
97                <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
98            </properties>
99        </profile>
100        <profile>
101            <id>Linux-x86</id>
102            <activation>
103                <os>
104                    <family>linux</family>
105                    <arch>x86</arch>
106                </os>
107            </activation>
108            <properties>
109                <swt.groupId>org.eclipse.swt</swt.groupId>
110                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
111            </properties>
112        </profile>
113        <profile>
114            <id>Linux-i386</id>
115            <activation>
116                <os>
117                    <family>linux</family>
118                    <arch>i386</arch>
119                </os>
120            </activation>
121            <properties>
122                <swt.groupId>org.eclipse.swt</swt.groupId>
123                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
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            </properties>
138        </profile>
139        <profile>
140            <id>Linux-amd64</id>
141            <activation>
142                <os>
143                    <family>linux</family>
144                    <arch>amd64</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            </properties>
151        </profile>
152        <profile>
153            <id>Linux-ppc64</id>
154            <activation>
155                <os>
156                    <family>linux</family>
157                    <arch>ppc64</arch>
158                </os>
159            </activation>
160            <properties>
161                <swt.groupId>org.eclipse.swt</swt.groupId>
162                <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
163            </properties>
164        </profile>
165    </profiles>
166    <build>
167        <plugins>
168            <plugin>
169                <groupId>org.apache.maven.plugins</groupId>
170                <artifactId>maven-jar-plugin</artifactId>
171                <configuration>
172                    <archive>
173                        <manifest>
174                            <addClasspath>true</addClasspath>
175                        </manifest>
176                    </archive>
177                </configuration>
178            </plugin>
179        </plugins>
180    </build>
181</project>
Note: See TracBrowser for help on using the repository browser.