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    
   6    DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   7    
   8    The contents of this file are subject to the terms of either the Universal Permissive License 
   9    v 1.0 as shown at http://oss.oracle.com/licenses/upl
  10    
  11    or the following license:
  12    
  13    Redistribution and use in source and binary forms, with or without modification, are permitted
  14    provided that the following conditions are met:
  15    
  16    1. Redistributions of source code must retain the above copyright notice, this list of conditions
  17    and the following disclaimer.
  18    
  19    2. Redistributions in binary form must reproduce the above copyright notice, this list of
  20    conditions and the following disclaimer in the documentation and/or other materials provided with
  21    the distribution.
  22    
  23    3. Neither the name of the copyright holder nor the names of its contributors may be used to
  24    endorse or promote products derived from this software without specific prior written permission.
  25    
  26    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
  27    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  28    FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  29    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  31    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  32    WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
  33    WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34 -->
  35         <modelVersion>4.0.0</modelVersion>
  36         <parent>
  37                 <groupId>org.jemmy.v3</groupId>
  38                 <artifactId>Jemmy</artifactId>
  39                 <version>1.0</version>
  40                 <relativePath>../../pom.xml</relativePath>
  41         </parent>
  42         <artifactId>JemmyAWTInput</artifactId>
  43         <packaging>jar</packaging>
  44         <properties>
  45                 <version.file>org/jemmy/input/jemmy.properties</version.file>
  46                 <version.class>org.jemmy.input.Version</version.class>
  47         </properties>
  48         <dependencies>
  49                 <dependency>
  50                         <groupId>org.jemmy.v3</groupId>
  51                         <artifactId>JemmyCore</artifactId>
  52                         <version>1.0</version>
  53                 </dependency>
  54         </dependencies>
  55         <build>
  56                 <pluginManagement>
  57                         <plugins>
  58                                 <plugin>
  59                                         <groupId>org.apache.maven.plugins</groupId>
  60                                         <artifactId>maven-surefire-plugin</artifactId>
  61                                         <configuration>
  62                                                 <argLine>-XX:+IgnoreUnrecognizedVMOptions -XstartOnFirstThread</argLine>
  63                                         </configuration>
  64                                 </plugin>
  65                         </plugins>
  66                 </pluginManagement>
  67         </build>
  68 </project>