html4j-maven-plugin/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Thu, 06 Feb 2014 11:09:50 +0100
changeset 535 349f6c9278bb
parent 489 a585b9c9a75b
child 552 40a4100ce43b
permissions -rw-r--r--
Human readable description of the plugin project
     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>Html for Java Maven Plugin</name>
    15   <url>http://maven.apache.org</url>
    16   <description>Maven plugin to post process the classes with @JavaScriptBody annotations</description>
    17   <properties>
    18     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    19   </properties>
    20   <build>
    21       <plugins>
    22           <plugin>
    23               <groupId>org.apache.maven.plugins</groupId>
    24               <artifactId>maven-plugin-plugin</artifactId>
    25               <version>3.1</version>
    26               <configuration>
    27                   <extractors>
    28                       <extractor>java-annotations</extractor>
    29                   </extractors>
    30                   <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
    31               </configuration>
    32               <executions>
    33                   <execution>
    34                       <id>mojo-descriptor</id>
    35                       <phase>process-classes</phase>
    36                       <goals>
    37                           <goal>descriptor</goal>
    38                       </goals>
    39                   </execution>
    40               </executions>
    41           </plugin>
    42       </plugins>
    43   </build>
    44       
    45   <dependencies>
    46       <dependency>
    47           <groupId>org.apache.maven</groupId>
    48           <artifactId>maven-plugin-api</artifactId>
    49           <version>3.0.4</version>
    50           <type>jar</type>
    51       </dependency>
    52       <dependency>
    53           <groupId>org.apache.maven.plugin-tools</groupId>
    54           <artifactId>maven-plugin-annotations</artifactId>
    55           <version>3.0</version>
    56           <type>jar</type>
    57       </dependency>
    58       <dependency>
    59           <groupId>org.apache.maven</groupId>
    60           <artifactId>maven-core</artifactId>
    61           <version>3.0.2</version>
    62           <type>jar</type>
    63       </dependency>
    64       <dependency>
    65           <groupId>org.ow2.asm</groupId> 
    66           <artifactId>asm</artifactId>
    67           <type>jar</type>
    68       </dependency>
    69       <dependency>
    70           <groupId>org.testng</groupId>
    71           <artifactId>testng</artifactId>
    72           <scope>test</scope>
    73           <type>jar</type>
    74       </dependency>
    75   </dependencies>
    76 </project>