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

Last change on this file since 504 was 504, checked in by sherbold, 12 years ago
  • updated quest-ui-core project configuration
  • 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"
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        <repositories>
9                <repository>
10                        <id>swt-repo</id>
11                        <url>https://swt-repo.googlecode.com/svn/repo</url>
12                </repository>
13                <repository>
14                        <id>quest-repo</id>
15                        <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>
16                </repository>
17        </repositories>
18        <dependencies>
19                <dependency>
20                        <groupId>de.ugoe.cs</groupId>
21                        <artifactId>java-utils</artifactId>
22                        <version>0.0.1-SNAPSHOT</version>
23                </dependency>
24                <dependency>
25                        <groupId>de.ugoe.cs.quest</groupId>
26                        <artifactId>quest-core-events</artifactId>
27                        <version>0.0.1-SNAPSHOT</version>
28                </dependency>
29                <dependency>
30                        <groupId>net.sf.jung</groupId>
31                        <artifactId>jung-visualization</artifactId>
32                        <version>2.0.1</version>
33                </dependency>
34                <dependency>
35                        <groupId>net.sf.jung</groupId>
36                        <artifactId>jung-graph-impl</artifactId>
37                        <version>2.0.1</version>
38                </dependency>
39                <dependency>
40                        <groupId>log4j</groupId>
41                        <artifactId>log4j</artifactId>
42                        <version>1.2.17</version>
43                </dependency>
44                <dependency>
45                        <groupId>commons-codec</groupId>
46                        <artifactId>commons-codec</artifactId>
47                        <version>1.6</version>
48                </dependency>
49                <dependency>
50                        <groupId>net.sf.jopt-simple</groupId>
51                        <artifactId>jopt-simple</artifactId>
52                        <version>4.3</version>
53                </dependency>
54                <dependency>
55                        <groupId>jdom</groupId>
56                        <artifactId>jdom</artifactId>
57                        <version>1.1</version>
58                </dependency>
59                <dependency>
60                        <groupId>${swt.groupId}</groupId>
61                        <artifactId>${swt.artifactId}</artifactId>
62                        <version>3.8</version>
63                </dependency>
64                <dependency>
65                        <groupId>org.eclipse</groupId>
66                        <artifactId>ui-forms</artifactId>
67                        <version>3.5</version>
68                </dependency>
69                <dependency>
70                        <groupId>edu.umd.cs</groupId>
71                        <artifactId>guitar-model-core</artifactId>
72                        <version>1.0</version>
73                </dependency>
74        </dependencies>
75
76        <profiles>
77                <profile>
78                        <id>Windows x86</id>
79                        <activation>
80                                <os>
81                                        <family>windows</family>
82                                        <arch>x86</arch>
83                                </os>
84                        </activation>
85                        <properties>
86                                <swt.groupId>org.eclipse.swt</swt.groupId>
87                                <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
88                        </properties>
89                </profile>
90                <profile>
91                        <id>Windows amd64</id>
92                        <activation>
93                                <os>
94                                        <family>windows</family>
95                                        <arch>amd64</arch>
96                                </os>
97                        </activation>
98                        <properties>
99                                <swt.groupId>org.eclipse.swt</swt.groupId>
100                                <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
101                        </properties>
102                </profile>
103                <profile>
104                        <id>Linux x86</id>
105                        <activation>
106                                <os>
107                                        <family>linux</family>
108                                        <arch>x86</arch>
109                                </os>
110                        </activation>
111                        <properties>
112                                <swt.groupId>org.eclipse.swt</swt.groupId>
113                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86/</swt.artifactId>
114                        </properties>
115                </profile>
116                <profile>
117                        <id>Linux x86_64</id>
118                        <activation>
119                                <os>
120                                        <family>linux</family>
121                                        <arch>x86_64</arch>
122                                </os>
123                        </activation>
124                        <properties>
125                                <swt.groupId>org.eclipse.swt</swt.groupId>
126                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
127                        </properties>
128                </profile>
129                <profile>
130                        <id>Linux amd64</id>
131                        <activation>
132                                <os>
133                                        <family>linux</family>
134                                        <arch>amd64</arch>
135                                </os>
136                        </activation>
137                        <properties>
138                                <swt.groupId>org.eclipse.swt</swt.groupId>
139                                <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
140                        </properties>
141                </profile>
142                <profile>
143                        <id>Linux ppc64</id>
144                        <activation>
145                                <os>
146                                        <family>linux</family>
147                                        <arch>ppc64</arch>
148                                </os>
149                        </activation>
150                        <properties>
151                                <swt.groupId>org.eclipse.swt</swt.groupId>
152                                <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
153                        </properties>
154                </profile>
155        </profiles>
156
157        <build>
158                <plugins>
159                        <plugin>
160                                <artifactId>maven-compiler-plugin</artifactId>
161                                <version>2.3.2</version>
162                                <configuration>
163                                        <source>1.6</source>
164                                        <target>1.6</target>
165                                </configuration>
166                        </plugin>
167                </plugins>
168        </build>
169</project>
Note: See TracBrowser for help on using the repository browser.