boot-agent-test/pom.xml
changeset 884 af690d50d7d6
child 922 6f4cce1be532
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/boot-agent-test/pom.xml	Sat Nov 29 22:25:40 2014 +0100
     1.3 @@ -0,0 +1,61 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<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">
     1.6 +    <modelVersion>4.0.0</modelVersion>
     1.7 +    <parent>
     1.8 +        <groupId>org.netbeans.html</groupId>
     1.9 +        <artifactId>pom</artifactId>
    1.10 +        <version>2.0-SNAPSHOT</version>
    1.11 +    </parent>
    1.12 +    <artifactId>boot-agent-test</artifactId>
    1.13 +    <packaging>jar</packaging>
    1.14 +    <name>Dynamic Boot Test</name>
    1.15 +    <build>
    1.16 +        <plugins>
    1.17 +            <plugin>
    1.18 +                <groupId>org.apache.maven.plugins</groupId>
    1.19 +                <artifactId>maven-deploy-plugin</artifactId>
    1.20 +                <configuration>
    1.21 +                    <skip>true</skip>
    1.22 +                </configuration>
    1.23 +            </plugin>
    1.24 +        </plugins>
    1.25 +    </build>
    1.26 +    <dependencies>
    1.27 +        <dependency>
    1.28 +            <groupId>org.testng</groupId>
    1.29 +            <artifactId>testng</artifactId>
    1.30 +            <scope>test</scope>
    1.31 +        </dependency>
    1.32 +        <dependency>
    1.33 +            <groupId>org.netbeans.html</groupId>
    1.34 +            <artifactId>net.java.html</artifactId>
    1.35 +            <version>${project.version}</version>
    1.36 +            <scope>test</scope>
    1.37 +            <type>jar</type>
    1.38 +        </dependency>
    1.39 +        <dependency>
    1.40 +            <groupId>org.netbeans.html</groupId>
    1.41 +            <artifactId>net.java.html.boot</artifactId>
    1.42 +            <version>${project.version}</version>
    1.43 +            <scope>test</scope>
    1.44 +            <type>jar</type>
    1.45 +        </dependency>
    1.46 +        <dependency>
    1.47 +            <groupId>org.netbeans.api</groupId>
    1.48 +            <artifactId>org-openide-util-lookup</artifactId>
    1.49 +            <scope>test</scope>
    1.50 +            <type>jar</type>
    1.51 +        </dependency>
    1.52 +        <dependency>
    1.53 +            <groupId>${project.groupId}</groupId>
    1.54 +            <artifactId>net.java.html.boot.fx</artifactId>
    1.55 +            <version>${project.version}</version>
    1.56 +            <scope>test</scope>
    1.57 +        </dependency>
    1.58 +        <dependency>
    1.59 +            <groupId>org.ow2.asm</groupId>
    1.60 +            <artifactId>asm</artifactId>
    1.61 +            <scope>test</scope>
    1.62 +        </dependency>
    1.63 +    </dependencies>
    1.64 +</project>
    1.65 \ No newline at end of file