1 <?xml version="1.0" encoding="utf-8"?>
   2 <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">
   3         <!--   
   4  Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
   5  DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   6 
   7  This code is free software; you can redistribute it and/or modify it
   8  under the terms of the GNU General Public License version 2 only, as
   9  published by the Free Software Foundation. Oracle designates this
  10  particular file as subject to the "Classpath" exception as provided
  11  by Oracle in the LICENSE file that accompanied this code.
  12 
  13  This code is distributed in the hope that it will be useful, but WITHOUT
  14  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16  version 2 for more details (a copy is included in the LICENSE file that
  17  accompanied this code).
  18 
  19  You should have received a copy of the GNU General Public License version
  20  2 along with this work; if not, write to the Free Software Foundation,
  21  Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  22 
  23  Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  24  or visit www.oracle.com if you need additional information or have any
  25  questions.
  26     -->
  27     <modelVersion>4.0.0</modelVersion>
  28     <parent>
  29         <groupId>org.jemmy.v3</groupId>
  30         <artifactId>Jemmy</artifactId>
  31         <version>1.0</version>
  32         <relativePath>../../pom.xml</relativePath>
  33     </parent>
  34     <artifactId>JemmySWT</artifactId>
  35     <packaging>jar</packaging>
  36     <properties>
  37         <swt.version>4.3</swt.version>
  38         <version.file>org/jemmy/swt/jemmy.properties</version.file>
  39         <version.class>org.jemmy.swt.Version</version.class>
  40     </properties>
  41     <profiles>
  42         <profile>
  43             <id>macos</id>
  44             <activation>
  45                 <os>
  46                     <family>mac</family>
  47                 </os>
  48             </activation>
  49             <properties>
  50                 <osgi.platform>cocoa.macosx.x86_64</osgi.platform>
  51             </properties>
  52         </profile>
  53         <profile>
  54             <id>linux</id>
  55             <activation>
  56                 <os>
  57                     <family>unix</family>
  58                     <name>Linux</name>
  59                 </os>
  60             </activation>
  61             <properties>
  62                 <osgi.platform>gtk.linux.x86_64</osgi.platform>
  63             </properties>
  64         </profile>
  65         <profile>
  66             <id>windows</id>
  67             <activation>
  68                 <os>
  69                     <family>windows</family>
  70                 </os>
  71             </activation>
  72             <properties>
  73                 <osgi.platform>win32.win32.x86_64</osgi.platform>
  74             </properties>
  75         </profile>
  76     </profiles>
  77     <dependencies>
  78         <dependency>
  79             <groupId>org.eclipse.swt</groupId>
  80             <artifactId>org.eclipse.swt.${osgi.platform}</artifactId>
  81             <version>${swt.version}</version>
  82         </dependency>
  83         <dependency>
  84             <groupId>org.jemmy.v3</groupId>
  85             <artifactId>JemmyCore</artifactId>
  86             <version>1.0</version>
  87         </dependency>
  88         <dependency>
  89             <groupId>org.jemmy.v3</groupId>
  90             <artifactId>JemmyBrowser</artifactId>
  91             <version>1.0</version>
  92         </dependency>
  93         <dependency>
  94             <groupId>org.jemmy.v3</groupId>
  95             <artifactId>JemmyAWTInput</artifactId>
  96             <version>1.0</version>
  97         </dependency>
  98     </dependencies>
  99 </project>