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

Last change on this file since 526 was 526, checked in by sherbold, 12 years ago
  • intial commit of quest-runner and quest-ui-swt. Both projects contain components that were moved from quest-ui-core. The quest-runner is responsible for the execution of the QUEST application. The quest-ui-swt contains an SWT GUI.
  • Property svn:mime-type set to text/plain
File size: 4.3 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  <modelVersion>4.0.0</modelVersion>
3  <groupId>de.ugoe.cs.quest</groupId>
4  <artifactId>quest-ui-swt</artifactId>
5  <version>0.0.1-SNAPSHOT</version>
6  <name>quest-ui-swt</name>
7<scm>
8                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-swt</url>
9        </scm>
10        <repositories>
11                <repository>
12                        <id>swt-repo</id>
13                        <url>https://swt-repo.googlecode.com/svn/repo</url>
14                </repository>
15                <repository>
16                        <id>quest-repo</id>
17                        <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
18                </repository>
19        </repositories>
20        <dependencies>
21                <dependency>
22                        <groupId>de.ugoe.cs</groupId>
23                        <artifactId>java-utils</artifactId>
24                        <version>0.0.1-SNAPSHOT</version>
25                </dependency>
26                <dependency>
27                        <groupId>de.ugoe.cs.quest</groupId>
28                        <artifactId>quest-core-events</artifactId>
29                        <version>0.0.1-SNAPSHOT</version>
30                </dependency>
31                <dependency>
32                        <groupId>de.ugoe.cs.quest</groupId>
33                        <artifactId>quest-core-assertions</artifactId>
34                        <version>0.0.1-SNAPSHOT</version>
35                </dependency>
36                <dependency>
37                        <groupId>de.ugoe.cs.quest</groupId>
38                        <artifactId>quest-core-usageprofiles</artifactId>
39                        <version>0.0.1-SNAPSHOT</version>
40                </dependency>
41                <dependency>
42                        <groupId>de.ugoe.cs.quest</groupId>
43                        <artifactId>quest-ui-core</artifactId>
44                        <version>0.0.1-SNAPSHOT</version>
45                </dependency>
46                <dependency>
47                        <groupId>${swt.groupId}</groupId>
48                        <artifactId>${swt.artifactId}</artifactId>
49                        <version>3.8</version>
50                </dependency>
51                <dependency>
52                        <groupId>org.eclipse</groupId>
53                        <artifactId>ui-forms</artifactId>
54                        <version>3.5</version>
55                </dependency>
56        </dependencies>
57
58        <profiles>
59                <profile>
60                        <id>Windows x86</id>
61                        <activation>
62                                <os>
63                                        <family>windows</family>
64                                        <arch>x86</arch>
65                                </os>
66                        </activation>
67                        <properties>
68                                <swt.groupId>org.eclipse.swt</swt.groupId>
69                                <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
70                        </properties>
71                </profile>
72                <profile>
73                        <id>Windows amd64</id>
74                        <activation>
75                                <os>
76                                        <family>windows</family>
77                                        <arch>amd64</arch>
78                                </os>
79                        </activation>
80                        <properties>
81                                <swt.groupId>org.eclipse.swt</swt.groupId>
82                                <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
83                        </properties>
84                </profile>
85                <profile>
86                        <id>Linux x86</id>
87                        <activation>
88                                <os>
89                                        <family>linux</family>
90                                        <arch>x86</arch>
91                                </os>
92                        </activation>
93                        <properties>
94                                <swt.groupId>org.eclipse.swt</swt.groupId>
95                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
96                        </properties>
97                </profile>
98                <profile>
99                        <id>Linux i386</id>
100                        <activation>
101                                <os>
102                                        <family>linux</family>
103                                        <arch>i386</arch>
104                                </os>
105                        </activation>
106                        <properties>
107                                <swt.groupId>org.eclipse.swt</swt.groupId>
108                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
109                        </properties>
110                </profile>
111                <profile>
112                        <id>Linux x86_64</id>
113                        <activation>
114                                <os>
115                                        <family>linux</family>
116                                        <arch>x86_64</arch>
117                                </os>
118                        </activation>
119                        <properties>
120                                <swt.groupId>org.eclipse.swt</swt.groupId>
121                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
122                        </properties>
123                </profile>
124                <profile>
125                        <id>Linux amd64</id>
126                        <activation>
127                                <os>
128                                        <family>linux</family>
129                                        <arch>amd64</arch>
130                                </os>
131                        </activation>
132                        <properties>
133                                <swt.groupId>org.eclipse.swt</swt.groupId>
134                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
135                        </properties>
136                </profile>
137                <profile>
138                        <id>Linux ppc64</id>
139                        <activation>
140                                <os>
141                                        <family>linux</family>
142                                        <arch>ppc64</arch>
143                                </os>
144                        </activation>
145                        <properties>
146                                <swt.groupId>org.eclipse.swt</swt.groupId>
147                                <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
148                        </properties>
149                </profile>
150        </profiles>
151
152        <build>
153                <plugins>
154                        <plugin>
155                                <artifactId>maven-compiler-plugin</artifactId>
156                                <version>2.3.2</version>
157                                <configuration>
158                                        <source>1.6</source>
159                                        <target>1.6</target>
160                                </configuration>
161                        </plugin>
162                </plugins>
163        </build>
164</project>
Note: See TracBrowser for help on using the repository browser.