source: trunk/quest-ui-swt/pom.xml @ 794

Last change on this file since 794 was 794, checked in by pharms, 12 years ago
  • use project.parent.version instead of deprecated parent.version variable
  • Property svn:mime-type set to text/plain
File size: 3.8 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.quest</groupId>
4    <artifactId>quest</artifactId>
5    <version>0.0.1-SNAPSHOT</version>
6  </parent>
7  <modelVersion>4.0.0</modelVersion>
8  <artifactId>quest-ui-swt</artifactId>
9  <name>quest-ui-swt</name>
10    <scm>
11                <url>${quest-scm-trunk-dir}/quest-ui-swt</url>
12        </scm>
13        <repositories>
14                <repository>
15                        <id>swt-repo</id>
16                        <url>https://swt-repo.googlecode.com/svn/repo</url>
17                </repository>
18        </repositories>
19        <dependencies>
20                <dependency>
21                        <groupId>de.ugoe.cs</groupId>
22                        <artifactId>java-utils</artifactId>
23                        <version>0.0.1-SNAPSHOT</version>
24                </dependency>
25                <dependency>
26                        <groupId>de.ugoe.cs.quest</groupId>
27                        <artifactId>quest-core-events</artifactId>
28                        <version>${project.parent.version}</version>
29                </dependency>
30                <dependency>
31                        <groupId>de.ugoe.cs.quest</groupId>
32                        <artifactId>quest-core-assertions</artifactId>
33                        <version>${project.parent.version}</version>
34                </dependency>
35                <dependency>
36                        <groupId>de.ugoe.cs.quest</groupId>
37                        <artifactId>quest-core-usageprofiles</artifactId>
38                        <version>${project.parent.version}</version>
39                </dependency>
40                <dependency>
41                        <groupId>${swt.groupId}</groupId>
42                        <artifactId>${swt.artifactId}</artifactId>
43                        <version>3.8</version>
44                </dependency>
45                <dependency>
46                        <groupId>org.eclipse</groupId>
47                        <artifactId>ui-forms</artifactId>
48                        <version>3.5</version>
49                </dependency>
50        </dependencies>
51
52        <profiles>
53                <profile>
54                        <id>Windows x86</id>
55                        <activation>
56                                <os>
57                                        <family>windows</family>
58                                        <arch>x86</arch>
59                                </os>
60                        </activation>
61                        <properties>
62                                <swt.groupId>org.eclipse.swt</swt.groupId>
63                                <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
64                        </properties>
65                </profile>
66                <profile>
67                        <id>Windows amd64</id>
68                        <activation>
69                                <os>
70                                        <family>windows</family>
71                                        <arch>amd64</arch>
72                                </os>
73                        </activation>
74                        <properties>
75                                <swt.groupId>org.eclipse.swt</swt.groupId>
76                                <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
77                        </properties>
78                </profile>
79                <profile>
80                        <id>Linux x86</id>
81                        <activation>
82                                <os>
83                                        <family>linux</family>
84                                        <arch>x86</arch>
85                                </os>
86                        </activation>
87                        <properties>
88                                <swt.groupId>org.eclipse.swt</swt.groupId>
89                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
90                        </properties>
91                </profile>
92                <profile>
93                        <id>Linux i386</id>
94                        <activation>
95                                <os>
96                                        <family>linux</family>
97                                        <arch>i386</arch>
98                                </os>
99                        </activation>
100                        <properties>
101                                <swt.groupId>org.eclipse.swt</swt.groupId>
102                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
103                        </properties>
104                </profile>
105                <profile>
106                        <id>Linux x86_64</id>
107                        <activation>
108                                <os>
109                                        <family>linux</family>
110                                        <arch>x86_64</arch>
111                                </os>
112                        </activation>
113                        <properties>
114                                <swt.groupId>org.eclipse.swt</swt.groupId>
115                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
116                        </properties>
117                </profile>
118                <profile>
119                        <id>Linux amd64</id>
120                        <activation>
121                                <os>
122                                        <family>linux</family>
123                                        <arch>amd64</arch>
124                                </os>
125                        </activation>
126                        <properties>
127                                <swt.groupId>org.eclipse.swt</swt.groupId>
128                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
129                        </properties>
130                </profile>
131                <profile>
132                        <id>Linux ppc64</id>
133                        <activation>
134                                <os>
135                                        <family>linux</family>
136                                        <arch>ppc64</arch>
137                                </os>
138                        </activation>
139                        <properties>
140                                <swt.groupId>org.eclipse.swt</swt.groupId>
141                                <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
142                        </properties>
143                </profile>
144        </profiles>
145</project>
Note: See TracBrowser for help on using the repository browser.