Changeset 2221 for trunk/autoquest-ui-swt
- Timestamp:
- 11/30/17 17:12:10 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-ui-swt/pom.xml
r2219 r2221 103 103 </os> 104 104 </activation> 105 <properties> 106 <swt.groupId>org.eclipse.swt</swt.groupId> 107 <swt.artifactId>org.eclipse.swt.win32.win32.x86_64</swt.artifactId> 108 <envClassifier>Windows-amd64</envClassifier> 109 </properties> 105 <dependencies> 106 <dependency> 107 <groupId>org.eclipse.swt</groupId> 108 <artifactId>org.eclipse.swt.win32.win32.x86_64</artifactId> 109 <version>4.3</version> 110 </dependency> 111 </dependencies> 112 <build> 113 <plugins> 114 <plugin> 115 <groupId>org.apache.maven.plugins</groupId> 116 <artifactId>maven-jar-plugin</artifactId> 117 <configuration> 118 <archive> 119 <manifest> 120 <addClasspath>true</addClasspath> 121 </manifest> 122 </archive> 123 <classifier>Windows-amd64</classifier> 124 </configuration> 125 </plugin> 126 </plugins> 127 </build> 110 128 </profile> 111 129 <profile> … … 117 135 </os> 118 136 </activation> 119 <properties> 120 <swt.groupId>org.eclipse.swt</swt.groupId> 121 <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId> 122 <envClassifier>Linux-x86</envClassifier> 123 </properties> 137 <dependencies> 138 <dependency> 139 <groupId>org.eclipse.swt</groupId> 140 <artifactId>org.eclipse.swt.gtk.linux.x86</artifactId> 141 <version>4.3</version> 142 </dependency> 143 </dependencies> 144 <build> 145 <plugins> 146 <plugin> 147 <groupId>org.apache.maven.plugins</groupId> 148 <artifactId>maven-jar-plugin</artifactId> 149 <configuration> 150 <archive> 151 <manifest> 152 <addClasspath>true</addClasspath> 153 </manifest> 154 </archive> 155 <classifier>Linux-x86</classifier> 156 </configuration> 157 </plugin> 158 </plugins> 159 </build> 124 160 </profile> 125 161 <profile> … … 131 167 </os> 132 168 </activation> 133 <properties> 134 <swt.groupId>org.eclipse.swt</swt.groupId> 135 <swt.artifactId>org.eclipse.swt.gtk.linux.x86</swt.artifactId> 136 <envClassifier>Linux-i386</envClassifier> 137 </properties> 169 <dependencies> 170 <dependency> 171 <groupId>org.eclipse.swt</groupId> 172 <artifactId>org.eclipse.swt.gtk.linux.x86</artifactId> 173 <version>4.3</version> 174 </dependency> 175 </dependencies> 176 <build> 177 <plugins> 178 <plugin> 179 <groupId>org.apache.maven.plugins</groupId> 180 <artifactId>maven-jar-plugin</artifactId> 181 <configuration> 182 <archive> 183 <manifest> 184 <addClasspath>true</addClasspath> 185 </manifest> 186 </archive> 187 <classifier>Linux-i386</classifier> 188 </configuration> 189 </plugin> 190 </plugins> 191 </build> 138 192 </profile> 139 193 <profile> … … 145 199 </os> 146 200 </activation> 147 <properties> 148 <swt.groupId>org.eclipse.swt</swt.groupId> 149 <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> 150 <envClassifier>Linux-x86_64</envClassifier> 151 </properties> 201 <dependencies> 202 <dependency> 203 <groupId>org.eclipse.swt</groupId> 204 <artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId> 205 <version>4.3</version> 206 </dependency> 207 </dependencies> 208 <build> 209 <plugins> 210 <plugin> 211 <groupId>org.apache.maven.plugins</groupId> 212 <artifactId>maven-jar-plugin</artifactId> 213 <configuration> 214 <archive> 215 <manifest> 216 <addClasspath>true</addClasspath> 217 </manifest> 218 </archive> 219 <classifier>Linux-x86_64</classifier> 220 </configuration> 221 </plugin> 222 </plugins> 223 </build> 152 224 </profile> 153 225 <profile> … … 159 231 </os> 160 232 </activation> 161 <properties> 162 <swt.groupId>org.eclipse.swt</swt.groupId> 163 <swt.artifactId>org.eclipse.swt.gtk.linux.x86_64</swt.artifactId> 164 <envClassifier>Linux-amd64</envClassifier> 165 </properties> 233 <dependencies> 234 <dependency> 235 <groupId>org.eclipse.swt</groupId> 236 <artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId> 237 <version>4.3</version> 238 </dependency> 239 </dependencies> 240 <build> 241 <plugins> 242 <plugin> 243 <groupId>org.apache.maven.plugins</groupId> 244 <artifactId>maven-jar-plugin</artifactId> 245 <configuration> 246 <archive> 247 <manifest> 248 <addClasspath>true</addClasspath> 249 </manifest> 250 </archive> 251 <classifier>Linux-amd64</classifier> 252 </configuration> 253 </plugin> 254 </plugins> 255 </build> 166 256 </profile> 167 257 <profile> … … 173 263 </os> 174 264 </activation> 175 <properties> 176 <swt.groupId>org.eclipse.swt</swt.groupId> 177 <swt.artifactId>org.eclipse.swt.gtk.linux.ppc64</swt.artifactId> 178 <envClassifier>Linux-ppc64</envClassifier> 179 </properties> 265 <dependencies> 266 <dependency> 267 <groupId>org.eclipse.swt</groupId> 268 <artifactId>org.eclipse.swt.gtk.linux.ppc64</artifactId> 269 <version>4.3</version> 270 </dependency> 271 </dependencies> 272 <build> 273 <plugins> 274 <plugin> 275 <groupId>org.apache.maven.plugins</groupId> 276 <artifactId>maven-jar-plugin</artifactId> 277 <configuration> 278 <archive> 279 <manifest> 280 <addClasspath>true</addClasspath> 281 </manifest> 282 </archive> 283 <classifier>Linux-ppc64</classifier> 284 </configuration> 285 </plugin> 286 </plugins> 287 </build> 180 288 </profile> 181 289 </profiles>
Note: See TracChangeset
for help on using the changeset viewer.