html4j-maven-plugin/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"?>
     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   <packaging>maven-plugin</packaging>
    10   <groupId>org.netbeans.html</groupId>
    11   <artifactId>html4j-maven-plugin</artifactId>
    12   <version>1.2.3</version>
    13   <name>Html for Java Maven Plugin</name>
    14   <url>http://maven.apache.org</url>
    15   <description>Maven plugin to post process the classes with @JavaScriptBody annotations</description>
    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>