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

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