html4j-maven-plugin/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Fri, 24 Jan 2014 10:18:40 +0100
branchpreprocess
changeset 489 a585b9c9a75b
parent 486 d463a2c42649
child 535 349f6c9278bb
permissions -rw-r--r--
Carry own version of asm for those who exclude asm from the net.java.html.boot dependency
     1 <?xml version="1.0"?>
     2 <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"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <groupId>org.netbeans.html</groupId>
     7     <artifactId>pom</artifactId>
     8     <version>0.8-SNAPSHOT</version>
     9   </parent>
    10   <packaging>maven-plugin</packaging>
    11   <groupId>org.netbeans.html</groupId>
    12   <artifactId>html4j-maven-plugin</artifactId>
    13   <version>0.8-SNAPSHOT</version>
    14   <name>html4j-maven-plugin</name>
    15   <url>http://maven.apache.org</url>
    16   <properties>
    17     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    18   </properties>
    19   <build>
    20       <plugins>
    21           <plugin>
    22               <groupId>org.apache.maven.plugins</groupId>
    23               <artifactId>maven-plugin-plugin</artifactId>
    24               <version>3.1</version>
    25               <configuration>
    26                   <extractors>
    27                       <extractor>java-annotations</extractor>
    28                   </extractors>
    29                   <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
    30               </configuration>
    31               <executions>
    32                   <execution>
    33                       <id>mojo-descriptor</id>
    34                       <phase>process-classes</phase>
    35                       <goals>
    36                           <goal>descriptor</goal>
    37                       </goals>
    38                   </execution>
    39               </executions>
    40           </plugin>
    41       </plugins>
    42   </build>
    43       
    44   <dependencies>
    45       <dependency>
    46           <groupId>org.apache.maven</groupId>
    47           <artifactId>maven-plugin-api</artifactId>
    48           <version>3.0.4</version>
    49           <type>jar</type>
    50       </dependency>
    51       <dependency>
    52           <groupId>org.apache.maven.plugin-tools</groupId>
    53           <artifactId>maven-plugin-annotations</artifactId>
    54           <version>3.0</version>
    55           <type>jar</type>
    56       </dependency>
    57       <dependency>
    58           <groupId>org.apache.maven</groupId>
    59           <artifactId>maven-core</artifactId>
    60           <version>3.0.2</version>
    61           <type>jar</type>
    62       </dependency>
    63       <dependency>
    64           <groupId>org.ow2.asm</groupId> 
    65           <artifactId>asm</artifactId>
    66           <type>jar</type>
    67       </dependency>
    68       <dependency>
    69           <groupId>org.testng</groupId>
    70           <artifactId>testng</artifactId>
    71           <scope>test</scope>
    72           <type>jar</type>
    73       </dependency>
    74   </dependencies>
    75 </project>