[1539] | 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.autoquest</groupId> |
---|
| 4 | <artifactId>autoquest</artifactId> |
---|
[2118] | 5 | <version>0.2.1</version> |
---|
[1539] | 6 | <relativePath>../autoquest/pom.xml</relativePath> |
---|
| 7 | </parent> |
---|
| 8 | <modelVersion>4.0.0</modelVersion> |
---|
| 9 | <artifactId>autoquest-ui-swt</artifactId> |
---|
| 10 | <name>autoquest-ui-swt</name> |
---|
| 11 | <licenses> |
---|
| 12 | <license> |
---|
| 13 | <name>The Apache Software License, Version 2.0</name> |
---|
| 14 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
---|
| 15 | </license> |
---|
| 16 | </licenses> |
---|
| 17 | <scm> |
---|
[2118] | 18 | <url>${autoquest-scm-trunk-dir}/${project.artifactId}/tags/autoquest-release-0.2.1/${project.artifactId}</url> |
---|
| 19 | <connection>scm:svn:${autoquest-scm-trunk-dir}/${project.artifactId}/tags/autoquest-release-0.2.1/${project.artifactId}</connection> |
---|
[1539] | 20 | </scm> |
---|
| 21 | <repositories> |
---|
| 22 | <repository> |
---|
| 23 | <id>swt-repo</id> |
---|
| 24 | <url>https://swt-repo.googlecode.com/svn/repo</url> |
---|
| 25 | </repository> |
---|
| 26 | </repositories> |
---|
| 27 | <dependencies> |
---|
| 28 | <dependency> |
---|
| 29 | <groupId>de.ugoe.cs</groupId> |
---|
| 30 | <artifactId>java-utils</artifactId> |
---|
[1939] | 31 | <version>${project.parent.version}</version> |
---|
[1539] | 32 | </dependency> |
---|
| 33 | <dependency> |
---|
| 34 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 35 | <artifactId>autoquest-core-events</artifactId> |
---|
| 36 | <version>${project.parent.version}</version> |
---|
| 37 | </dependency> |
---|
| 38 | <dependency> |
---|
| 39 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 40 | <artifactId>autoquest-core-assertions</artifactId> |
---|
| 41 | <version>${project.parent.version}</version> |
---|
| 42 | </dependency> |
---|
| 43 | <dependency> |
---|
| 44 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 45 | <artifactId>autoquest-core-usageprofiles</artifactId> |
---|
| 46 | <version>${project.parent.version}</version> |
---|
| 47 | </dependency> |
---|
| 48 | <dependency> |
---|
| 49 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 50 | <artifactId>autoquest-core-tasktrees</artifactId> |
---|
| 51 | <version>${project.parent.version}</version> |
---|
| 52 | </dependency> |
---|
| 53 | <dependency> |
---|
| 54 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 55 | <artifactId>autoquest-core-usability</artifactId> |
---|
| 56 | <version>${project.parent.version}</version> |
---|
| 57 | </dependency> |
---|
| 58 | <dependency> |
---|
| 59 | <groupId>${swt.groupId}</groupId> |
---|
| 60 | <artifactId>${swt.artifactId}</artifactId> |
---|
| 61 | <version>3.8</version> |
---|
| 62 | </dependency> |
---|
| 63 | <dependency> |
---|
| 64 | <groupId>org.eclipse</groupId> |
---|
| 65 | <artifactId>ui-forms</artifactId> |
---|
| 66 | <version>3.5</version> |
---|
| 67 | </dependency> |
---|
[2033] | 68 | <dependency> |
---|
| 69 | <groupId>org.jfree</groupId> |
---|
| 70 | <artifactId>jfreechart</artifactId> |
---|
| 71 | <version>1.0.14</version> |
---|
| 72 | </dependency> |
---|
[1539] | 73 | </dependencies> |
---|
| 74 | |
---|
| 75 | <profiles> |
---|
| 76 | <profile> |
---|
| 77 | <id>Windows-x86</id> |
---|
| 78 | <activation> |
---|
| 79 | <os> |
---|
| 80 | <family>windows</family> |
---|
| 81 | <arch>x86</arch> |
---|
| 82 | </os> |
---|
| 83 | </activation> |
---|
| 84 | <properties> |
---|
| 85 | <swt.groupId>org.eclipse.swt</swt.groupId> |
---|
| 86 | <swt.artifactId>org.eclipse.swt.win32.win32.x86</swt.artifactId> |
---|
| 87 | </properties> |
---|
| 88 | </profile> |
---|
| 89 | <profile> |
---|
| 90 | <id>Windows-amd64</id> |
---|
| 91 | <activation> |
---|
| 92 | <os> |
---|
| 93 | <family>windows</family> |
---|
| 94 | <arch>amd64</arch> |
---|
| 95 | </os> |
---|
| 96 | </activation> |
---|
| 97 | <properties> |
---|
| 98 | <swt.groupId>org.eclipse.swt</swt.groupId> |
---|
| 99 | <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId> |
---|
| 100 | </properties> |
---|
| 101 | </profile> |
---|
| 102 | <profile> |
---|
| 103 | <id>Linux-x86</id> |
---|
| 104 | <activation> |
---|
| 105 | <os> |
---|
| 106 | <family>linux</family> |
---|
| 107 | <arch>x86</arch> |
---|
| 108 | </os> |
---|
| 109 | </activation> |
---|
| 110 | <properties> |
---|
| 111 | <swt.groupId>org.eclipse.swt</swt.groupId> |
---|
| 112 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId> |
---|
| 113 | </properties> |
---|
| 114 | </profile> |
---|
| 115 | <profile> |
---|
| 116 | <id>Linux-i386</id> |
---|
| 117 | <activation> |
---|
| 118 | <os> |
---|
| 119 | <family>linux</family> |
---|
| 120 | <arch>i386</arch> |
---|
| 121 | </os> |
---|
| 122 | </activation> |
---|
| 123 | <properties> |
---|
| 124 | <swt.groupId>org.eclipse.swt</swt.groupId> |
---|
| 125 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId> |
---|
| 126 | </properties> |
---|
| 127 | </profile> |
---|
| 128 | <profile> |
---|
| 129 | <id>Linux-x86_64</id> |
---|
| 130 | <activation> |
---|
| 131 | <os> |
---|
| 132 | <family>linux</family> |
---|
| 133 | <arch>x86_64</arch> |
---|
| 134 | </os> |
---|
| 135 | </activation> |
---|
| 136 | <properties> |
---|
| 137 | <swt.groupId>org.eclipse.swt</swt.groupId> |
---|
| 138 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> |
---|
| 139 | </properties> |
---|
| 140 | </profile> |
---|
| 141 | <profile> |
---|
| 142 | <id>Linux-amd64</id> |
---|
| 143 | <activation> |
---|
| 144 | <os> |
---|
| 145 | <family>linux</family> |
---|
| 146 | <arch>amd64</arch> |
---|
| 147 | </os> |
---|
| 148 | </activation> |
---|
| 149 | <properties> |
---|
| 150 | <swt.groupId>org.eclipse.swt</swt.groupId> |
---|
| 151 | <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> |
---|
| 152 | </properties> |
---|
| 153 | </profile> |
---|
| 154 | <profile> |
---|
| 155 | <id>Linux-ppc64</id> |
---|
| 156 | <activation> |
---|
| 157 | <os> |
---|
| 158 | <family>linux</family> |
---|
| 159 | <arch>ppc64</arch> |
---|
| 160 | </os> |
---|
| 161 | </activation> |
---|
| 162 | <properties> |
---|
| 163 | <swt.groupId>org.eclipse.swt</swt.groupId> |
---|
| 164 | <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId> |
---|
| 165 | </properties> |
---|
| 166 | </profile> |
---|
| 167 | </profiles> |
---|
| 168 | <build> |
---|
| 169 | <plugins> |
---|
| 170 | <plugin> |
---|
| 171 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 172 | <artifactId>maven-jar-plugin</artifactId> |
---|
| 173 | <configuration> |
---|
| 174 | <archive> |
---|
| 175 | <manifest> |
---|
| 176 | <addClasspath>true</addClasspath> |
---|
| 177 | </manifest> |
---|
| 178 | </archive> |
---|
| 179 | </configuration> |
---|
| 180 | </plugin> |
---|
| 181 | </plugins> |
---|
| 182 | </build> |
---|
[526] | 183 | </project> |
---|