vmtest/pom.xml
branchlauncher
changeset 346 b671ac44bc55
child 349 3fe5a86bd123
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/vmtest/pom.xml	Mon Dec 17 17:45:08 2012 +0100
     1.3 @@ -0,0 +1,56 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     1.6 +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     1.7 +  <modelVersion>4.0.0</modelVersion>
     1.8 +  <parent>
     1.9 +    <groupId>org.apidesign</groupId>
    1.10 +    <artifactId>bck2brwsr</artifactId>
    1.11 +    <version>0.3-SNAPSHOT</version>
    1.12 +  </parent>
    1.13 +  <groupId>org.apidesign.bck2brwsr</groupId>
    1.14 +  <artifactId>vmtest</artifactId>
    1.15 +  <version>0.3-SNAPSHOT</version>
    1.16 +  
    1.17 +  <name>VM Testing APIs</name>
    1.18 +  <url>http://bck2brwsr.apidesign.org</url>
    1.19 +    <build>
    1.20 +        <plugins>
    1.21 +            <plugin>
    1.22 +                <groupId>org.apache.maven.plugins</groupId>
    1.23 +                <artifactId>maven-compiler-plugin</artifactId>
    1.24 +                <version>2.3.2</version>
    1.25 +                <configuration>
    1.26 +                    <source>1.7</source>
    1.27 +                    <target>1.7</target>
    1.28 +                </configuration>
    1.29 +            </plugin>
    1.30 +        </plugins>
    1.31 +    </build>
    1.32 +    <properties>
    1.33 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.34 +  </properties>
    1.35 +  <dependencies>
    1.36 +    <dependency>
    1.37 +      <groupId>org.testng</groupId>
    1.38 +      <artifactId>testng</artifactId>
    1.39 +      <scope>compile</scope>
    1.40 +      <exclusions>
    1.41 +        <exclusion>
    1.42 +          <artifactId>junit</artifactId>
    1.43 +          <groupId>junit</groupId>
    1.44 +        </exclusion>
    1.45 +      </exclusions>
    1.46 +    </dependency>
    1.47 +    <dependency>
    1.48 +      <groupId>${project.groupId}</groupId>
    1.49 +      <artifactId>vm4brwsr</artifactId>
    1.50 +      <version>0.3-SNAPSHOT</version>
    1.51 +      <type>jar</type>
    1.52 +    </dependency>
    1.53 +    <dependency>
    1.54 +      <groupId>${project.groupId}</groupId>
    1.55 +      <artifactId>emul</artifactId>
    1.56 +      <version>0.3-SNAPSHOT</version>
    1.57 +    </dependency>
    1.58 +  </dependencies>
    1.59 +</project>