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

Last change on this file since 526 was 524, checked in by sherbold, 12 years ago
  • the commands generateFixedLengthSequences, generateHybrid, and generateRandomSequences now quest-core-testgeneration for the generation of test suites instead of local implementations.
  • Property svn:mime-type set to text/plain
File size: 5.4 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3        <modelVersion>4.0.0</modelVersion>
4        <groupId>de.ugoe.cs.quest</groupId>
5        <artifactId>quest-ui-core</artifactId>
6        <version>0.0.1-SNAPSHOT</version>
7        <name>quest-ui-core</name>
8        <scm>
9                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core</url>
10        </scm>
11        <repositories>
12                <repository>
13                        <id>swt-repo</id>
14                        <url>https://swt-repo.googlecode.com/svn/repo</url>
15                </repository>
16                <repository>
17                        <id>quest-repo</id>
18                        <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
19                </repository>
20        </repositories>
21        <dependencies>
22                <dependency>
23                        <groupId>de.ugoe.cs</groupId>
24                        <artifactId>java-utils</artifactId>
25                        <version>0.0.1-SNAPSHOT</version>
26                </dependency>
27                <dependency>
28                        <groupId>de.ugoe.cs.quest</groupId>
29                        <artifactId>quest-core-events</artifactId>
30                        <version>0.0.1-SNAPSHOT</version>
31                </dependency>
32                <dependency>
33                        <groupId>de.ugoe.cs.quest</groupId>
34                        <artifactId>quest-core-usageprofiles</artifactId>
35                        <version>0.0.1-SNAPSHOT</version>
36                </dependency>
37                <dependency>
38                        <groupId>de.ugoe.cs.quest</groupId>
39                        <artifactId>quest-core-coverage</artifactId>
40                        <version>0.0.1-SNAPSHOT</version>
41                </dependency>
42                <dependency>
43                        <groupId>de.ugoe.cs.quest</groupId>
44                        <artifactId>quest-core-assertions</artifactId>
45                        <version>0.0.1-SNAPSHOT</version>
46                </dependency>
47                <dependency>
48                        <groupId>de.ugoe.cs.quest</groupId>
49                        <artifactId>quest-core-testgeneration</artifactId>
50                        <version>0.0.1-SNAPSHOT</version>
51                </dependency>
52                <dependency>
53                        <groupId>net.sf.jung</groupId>
54                        <artifactId>jung-visualization</artifactId>
55                        <version>2.0.1</version>
56                </dependency>
57                <dependency>
58                        <groupId>net.sf.jung</groupId>
59                        <artifactId>jung-graph-impl</artifactId>
60                        <version>2.0.1</version>
61                </dependency>
62                <dependency>
63                        <groupId>log4j</groupId>
64                        <artifactId>log4j</artifactId>
65                        <version>1.2.17</version>
66                </dependency>
67                <dependency>
68                        <groupId>commons-codec</groupId>
69                        <artifactId>commons-codec</artifactId>
70                        <version>1.6</version>
71                </dependency>
72                <dependency>
73                        <groupId>net.sf.jopt-simple</groupId>
74                        <artifactId>jopt-simple</artifactId>
75                        <version>4.3</version>
76                </dependency>
77                <dependency>
78                        <groupId>jdom</groupId>
79                        <artifactId>jdom</artifactId>
80                        <version>1.1</version>
81                </dependency>
82                <dependency>
83                        <groupId>${swt.groupId}</groupId>
84                        <artifactId>${swt.artifactId}</artifactId>
85                        <version>3.8</version>
86                </dependency>
87                <dependency>
88                        <groupId>org.eclipse</groupId>
89                        <artifactId>ui-forms</artifactId>
90                        <version>3.5</version>
91                </dependency>
92                <dependency>
93                        <groupId>edu.umd.cs</groupId>
94                        <artifactId>guitar-model-core</artifactId>
95                        <version>1.0</version>
96                </dependency>
97        </dependencies>
98
99        <profiles>
100                <profile>
101                        <id>Windows x86</id>
102                        <activation>
103                                <os>
104                                        <family>windows</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.win32.win32.x86</swt.artifactId>
111                        </properties>
112                </profile>
113                <profile>
114                        <id>Windows amd64</id>
115                        <activation>
116                                <os>
117                                        <family>windows</family>
118                                        <arch>amd64</arch>
119                                </os>
120                        </activation>
121                        <properties>
122                                <swt.groupId>org.eclipse.swt</swt.groupId>
123                                <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
124                        </properties>
125                </profile>
126                <profile>
127                        <id>Linux x86</id>
128                        <activation>
129                                <os>
130                                        <family>linux</family>
131                                        <arch>x86</arch>
132                                </os>
133                        </activation>
134                        <properties>
135                                <swt.groupId>org.eclipse.swt</swt.groupId>
136                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
137                        </properties>
138                </profile>
139                <profile>
140                        <id>Linux i386</id>
141                        <activation>
142                                <os>
143                                        <family>linux</family>
144                                        <arch>i386</arch>
145                                </os>
146                        </activation>
147                        <properties>
148                                <swt.groupId>org.eclipse.swt</swt.groupId>
149                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
150                        </properties>
151                </profile>
152                <profile>
153                        <id>Linux x86_64</id>
154                        <activation>
155                                <os>
156                                        <family>linux</family>
157                                        <arch>x86_64</arch>
158                                </os>
159                        </activation>
160                        <properties>
161                                <swt.groupId>org.eclipse.swt</swt.groupId>
162                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
163                        </properties>
164                </profile>
165                <profile>
166                        <id>Linux amd64</id>
167                        <activation>
168                                <os>
169                                        <family>linux</family>
170                                        <arch>amd64</arch>
171                                </os>
172                        </activation>
173                        <properties>
174                                <swt.groupId>org.eclipse.swt</swt.groupId>
175                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
176                        </properties>
177                </profile>
178                <profile>
179                        <id>Linux ppc64</id>
180                        <activation>
181                                <os>
182                                        <family>linux</family>
183                                        <arch>ppc64</arch>
184                                </os>
185                        </activation>
186                        <properties>
187                                <swt.groupId>org.eclipse.swt</swt.groupId>
188                                <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
189                        </properties>
190                </profile>
191        </profiles>
192
193        <build>
194                <plugins>
195                        <plugin>
196                                <artifactId>maven-compiler-plugin</artifactId>
197                                <version>2.3.2</version>
198                                <configuration>
199                                        <source>1.6</source>
200                                        <target>1.6</target>
201                                </configuration>
202                        </plugin>
203                </plugins>
204        </build>
205</project>
Note: See TracBrowser for help on using the repository browser.