[526] | 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>${swt.groupId}</groupId>
|
---|
| 43 | <artifactId>${swt.artifactId}</artifactId>
|
---|
| 44 | <version>3.8</version>
|
---|
| 45 | </dependency>
|
---|
| 46 | <dependency>
|
---|
| 47 | <groupId>org.eclipse</groupId>
|
---|
| 48 | <artifactId>ui-forms</artifactId>
|
---|
| 49 | <version>3.5</version>
|
---|
| 50 | </dependency>
|
---|
| 51 | </dependencies>
|
---|
| 52 |
|
---|
| 53 | <profiles>
|
---|
| 54 | <profile>
|
---|
| 55 | <id>Windows x86</id>
|
---|
| 56 | <activation>
|
---|
| 57 | <os>
|
---|
| 58 | <family>windows</family>
|
---|
| 59 | <arch>x86</arch>
|
---|
| 60 | </os>
|
---|
| 61 | </activation>
|
---|
| 62 | <properties>
|
---|
| 63 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 64 | <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId>
|
---|
| 65 | </properties>
|
---|
| 66 | </profile>
|
---|
| 67 | <profile>
|
---|
| 68 | <id>Windows amd64</id>
|
---|
| 69 | <activation>
|
---|
| 70 | <os>
|
---|
| 71 | <family>windows</family>
|
---|
| 72 | <arch>amd64</arch>
|
---|
| 73 | </os>
|
---|
| 74 | </activation>
|
---|
| 75 | <properties>
|
---|
| 76 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 77 | <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId>
|
---|
| 78 | </properties>
|
---|
| 79 | </profile>
|
---|
| 80 | <profile>
|
---|
| 81 | <id>Linux x86</id>
|
---|
| 82 | <activation>
|
---|
| 83 | <os>
|
---|
| 84 | <family>linux</family>
|
---|
| 85 | <arch>x86</arch>
|
---|
| 86 | </os>
|
---|
| 87 | </activation>
|
---|
| 88 | <properties>
|
---|
| 89 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 90 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
|
---|
| 91 | </properties>
|
---|
| 92 | </profile>
|
---|
| 93 | <profile>
|
---|
| 94 | <id>Linux i386</id>
|
---|
| 95 | <activation>
|
---|
| 96 | <os>
|
---|
| 97 | <family>linux</family>
|
---|
| 98 | <arch>i386</arch>
|
---|
| 99 | </os>
|
---|
| 100 | </activation>
|
---|
| 101 | <properties>
|
---|
| 102 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 103 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId>
|
---|
| 104 | </properties>
|
---|
| 105 | </profile>
|
---|
| 106 | <profile>
|
---|
| 107 | <id>Linux x86_64</id>
|
---|
| 108 | <activation>
|
---|
| 109 | <os>
|
---|
| 110 | <family>linux</family>
|
---|
| 111 | <arch>x86_64</arch>
|
---|
| 112 | </os>
|
---|
| 113 | </activation>
|
---|
| 114 | <properties>
|
---|
| 115 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 116 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
|
---|
| 117 | </properties>
|
---|
| 118 | </profile>
|
---|
| 119 | <profile>
|
---|
| 120 | <id>Linux amd64</id>
|
---|
| 121 | <activation>
|
---|
| 122 | <os>
|
---|
| 123 | <family>linux</family>
|
---|
| 124 | <arch>amd64</arch>
|
---|
| 125 | </os>
|
---|
| 126 | </activation>
|
---|
| 127 | <properties>
|
---|
| 128 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 129 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId>
|
---|
| 130 | </properties>
|
---|
| 131 | </profile>
|
---|
| 132 | <profile>
|
---|
| 133 | <id>Linux ppc64</id>
|
---|
| 134 | <activation>
|
---|
| 135 | <os>
|
---|
| 136 | <family>linux</family>
|
---|
| 137 | <arch>ppc64</arch>
|
---|
| 138 | </os>
|
---|
| 139 | </activation>
|
---|
| 140 | <properties>
|
---|
| 141 | <swt.groupId>org.eclipse.swt</swt.groupId>
|
---|
| 142 | <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId>
|
---|
| 143 | </properties>
|
---|
| 144 | </profile>
|
---|
| 145 | </profiles>
|
---|
| 146 |
|
---|
| 147 | <build>
|
---|
| 148 | <plugins>
|
---|
| 149 | <plugin>
|
---|
| 150 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
| 151 | <version>2.3.2</version>
|
---|
| 152 | <configuration>
|
---|
| 153 | <source>1.6</source>
|
---|
| 154 | <target>1.6</target>
|
---|
| 155 | </configuration>
|
---|
| 156 | </plugin>
|
---|
| 157 | </plugins>
|
---|
| 158 | </build>
|
---|
| 159 | </project> |
---|