Advertisement
Guest User

Maven pom.xml for GraphWalker

a guest
Apr 24th, 2014
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.11 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.  
  5.     <repositories>
  6.             <repository>
  7.                 <id>my-internal-site</id>
  8.                 <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  9.         </repository>
  10.     </repositories>
  11.     <groupId>org.graphwalker</groupId>
  12.     <artifactId>GraphWalker-Examples</artifactId>
  13.     <version>0.0.2</version>
  14.     <packaging>jar</packaging>
  15.  
  16.     <properties>
  17.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18.     </properties>
  19.  
  20.     <build>
  21.         <plugins>
  22.             <plugin>
  23.                 <groupId>org.apache.maven.plugins</groupId>
  24.                 <artifactId>maven-compiler-plugin</artifactId>
  25.                 <version>3.1</version>
  26.                 <configuration>
  27.                     <source>1.6</source>
  28.                     <target>1.6</target>
  29.                 </configuration>
  30.             </plugin>
  31.             <plugin>
  32.                 <groupId>org.codehaus.mojo</groupId>
  33.                 <artifactId>exec-maven-plugin</artifactId>
  34.                 <version>1.2.1</version>
  35.                 <executions>
  36.                     <execution>
  37.                         <id>generateInterfaces</id>
  38.                         <phase>generate-sources</phase>
  39.                         <goals>
  40.                             <goal>java</goal>
  41.                         </goals>
  42.                         <configuration>
  43.                             <mainClass>org.graphwalker.io.ModelInterfaceGenerator</mainClass>
  44.                             <arguments>
  45.                                 <argument>src/main/resources/model</argument>
  46.                                 <argument>src/main/java</argument>
  47.                                 <argument>org.graphwalker.examples.modelAPI.intf</argument>
  48.                             </arguments>
  49.                         </configuration>
  50.                     </execution>
  51.                 </executions>
  52.             </plugin>
  53.         </plugins>
  54.     </build>
  55.  
  56.     <dependencies>
  57.        
  58.         <dependency>
  59.             <groupId>org.graphwalker</groupId>
  60.             <artifactId>graphwalker</artifactId>
  61.             <version>2.6.3-SNAPSHOT</version>
  62.         </dependency>
  63.  
  64.         <dependency>
  65.             <groupId>org.testng</groupId>
  66.             <artifactId>testng</artifactId>
  67.             <version>LATEST</version>
  68.         </dependency>
  69.  
  70.         <dependency>
  71.             <groupId>org.seleniumhq.selenium</groupId>
  72.             <artifactId>selenium-java</artifactId>
  73.             <version>LATEST</version>
  74.         </dependency>
  75.  
  76.     </dependencies>
  77. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement