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
     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     <modelVersion>4.0.0</modelVersion>
     4     <parent>
     5         <groupId>org.netbeans.html</groupId>
     6         <artifactId>pom</artifactId>
     7         <version>1.2.3</version>
     8     </parent>
     9     <artifactId>boot-agent-test</artifactId>
    10     <packaging>jar</packaging>
    11     <name>Dynamic Boot Test</name>
    12     <build>
    13         <plugins>
    14             <plugin>
    15                 <groupId>org.apache.maven.plugins</groupId>
    16                 <artifactId>maven-deploy-plugin</artifactId>
    17                 <configuration>
    18                     <skip>true</skip>
    19                 </configuration>
    20             </plugin>
    21         </plugins>
    22     </build>
    23     <dependencies>
    24         <dependency>
    25             <groupId>org.testng</groupId>
    26             <artifactId>testng</artifactId>
    27             <scope>test</scope>
    28         </dependency>
    29         <dependency>
    30             <groupId>org.netbeans.html</groupId>
    31             <artifactId>net.java.html</artifactId>
    32             <version>${project.version}</version>
    33             <scope>test</scope>
    34             <type>jar</type>
    35         </dependency>
    36         <dependency>
    37             <groupId>org.netbeans.html</groupId>
    38             <artifactId>net.java.html.boot</artifactId>
    39             <version>${project.version}</version>
    40             <scope>test</scope>
    41             <type>jar</type>
    42         </dependency>
    43         <dependency>
    44             <groupId>org.netbeans.api</groupId>
    45             <artifactId>org-openide-util-lookup</artifactId>
    46             <scope>test</scope>
    47             <type>jar</type>
    48         </dependency>
    49         <dependency>
    50             <groupId>${project.groupId}</groupId>
    51             <artifactId>net.java.html.boot.fx</artifactId>
    52             <version>${project.version}</version>
    53             <scope>test</scope>
    54         </dependency>
    55         <dependency>
    56             <groupId>org.ow2.asm</groupId>
    57             <artifactId>asm</artifactId>
    58             <scope>test</scope>
    59         </dependency>
    60     </dependencies>
    61 </project>