boot-agent-test/pom.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Mon, 21 Sep 2015 21:19:13 +0200
changeset 992 6f1a8b251b7d
parent 989 af449e1eaedc
child 1005 c7f11fbd5475
permissions -rw-r--r--
[maven-release-plugin] prepare release release-1.2.3
jtulach@884
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@884
     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">
jtulach@884
     3
    <modelVersion>4.0.0</modelVersion>
jtulach@884
     4
    <parent>
jtulach@884
     5
        <groupId>org.netbeans.html</groupId>
jtulach@884
     6
        <artifactId>pom</artifactId>
jtulach@992
     7
        <version>1.2.3</version>
jtulach@884
     8
    </parent>
jtulach@884
     9
    <artifactId>boot-agent-test</artifactId>
jtulach@884
    10
    <packaging>jar</packaging>
jtulach@884
    11
    <name>Dynamic Boot Test</name>
jtulach@884
    12
    <build>
jtulach@884
    13
        <plugins>
jtulach@884
    14
            <plugin>
jtulach@884
    15
                <groupId>org.apache.maven.plugins</groupId>
jtulach@884
    16
                <artifactId>maven-deploy-plugin</artifactId>
jtulach@884
    17
                <configuration>
jtulach@884
    18
                    <skip>true</skip>
jtulach@884
    19
                </configuration>
jtulach@884
    20
            </plugin>
jtulach@884
    21
        </plugins>
jtulach@884
    22
    </build>
jtulach@884
    23
    <dependencies>
jtulach@884
    24
        <dependency>
jtulach@884
    25
            <groupId>org.testng</groupId>
jtulach@884
    26
            <artifactId>testng</artifactId>
jtulach@884
    27
            <scope>test</scope>
jtulach@884
    28
        </dependency>
jtulach@884
    29
        <dependency>
jtulach@884
    30
            <groupId>org.netbeans.html</groupId>
jtulach@884
    31
            <artifactId>net.java.html</artifactId>
jtulach@884
    32
            <version>${project.version}</version>
jtulach@884
    33
            <scope>test</scope>
jtulach@884
    34
            <type>jar</type>
jtulach@884
    35
        </dependency>
jtulach@884
    36
        <dependency>
jtulach@884
    37
            <groupId>org.netbeans.html</groupId>
jtulach@884
    38
            <artifactId>net.java.html.boot</artifactId>
jtulach@884
    39
            <version>${project.version}</version>
jtulach@884
    40
            <scope>test</scope>
jtulach@884
    41
            <type>jar</type>
jtulach@884
    42
        </dependency>
jtulach@884
    43
        <dependency>
jtulach@884
    44
            <groupId>org.netbeans.api</groupId>
jtulach@884
    45
            <artifactId>org-openide-util-lookup</artifactId>
jtulach@884
    46
            <scope>test</scope>
jtulach@884
    47
            <type>jar</type>
jtulach@884
    48
        </dependency>
jtulach@884
    49
        <dependency>
jtulach@884
    50
            <groupId>${project.groupId}</groupId>
jtulach@884
    51
            <artifactId>net.java.html.boot.fx</artifactId>
jtulach@884
    52
            <version>${project.version}</version>
jtulach@884
    53
            <scope>test</scope>
jtulach@884
    54
        </dependency>
jtulach@884
    55
        <dependency>
jtulach@884
    56
            <groupId>org.ow2.asm</groupId>
jtulach@884
    57
            <artifactId>asm</artifactId>
jtulach@884
    58
            <scope>test</scope>
jtulach@884
    59
        </dependency>
jtulach@884
    60
    </dependencies>
jtulach@884
    61
</project>