html4j-maven-plugin/pom.xml
author Jaroslav Tulach <jaroslav.tulach@netbeans.org>
Tue, 07 Jan 2014 08:55:34 +0100
branchpreprocess
changeset 425 6729b08befde
parent 331 72dda6af599b
child 433 8e4b39d7a3c3
permissions -rw-r--r--
Additional merge from default branch
     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.7-SNAPSHOT</version>
     9   </parent>
    10   <packaging>maven-plugin</packaging>
    11   <groupId>org.apidesign.html</groupId>
    12   <artifactId>html4j-maven-plugin</artifactId>
    13   <version>0.7-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           <plugin>
    42               <groupId>org.apache.maven.plugins</groupId>
    43               <artifactId>maven-compiler-plugin</artifactId>
    44               <version>2.3.2</version>
    45               <configuration>
    46                   <source>1.6</source>
    47                   <target>1.6</target>
    48               </configuration>
    49           </plugin>
    50           <plugin>
    51               <groupId>org.apidesign.html</groupId>
    52               <artifactId>html4j-maven-plugin</artifactId>
    53               <version>${project.version}</version>
    54               <executions>
    55                   <execution>
    56                       <goals>
    57                           <goal>process-js-annotations</goal>
    58                       </goals>
    59                       <phase>process-test-classes</phase>
    60                       <configuration>
    61                           <classes>${project.build.directory}/test-classes</classes>
    62                       </configuration>
    63                   </execution>
    64               </executions>
    65           </plugin>
    66       </plugins>
    67   </build>
    68       
    69   <dependencies>
    70       <dependency>
    71           <groupId>org.apache.maven</groupId>
    72           <artifactId>maven-plugin-api</artifactId>
    73           <version>3.0.4</version>
    74           <type>jar</type>
    75       </dependency>
    76       <dependency>
    77           <groupId>org.apache.maven.plugin-tools</groupId>
    78           <artifactId>maven-plugin-annotations</artifactId>
    79           <version>3.0</version>
    80           <type>jar</type>
    81       </dependency>
    82       <dependency>
    83           <groupId>org.apache.maven</groupId>
    84           <artifactId>maven-core</artifactId>
    85           <version>3.0.2</version>
    86           <type>jar</type>
    87       </dependency>
    88     <dependency>
    89       <groupId>org.apidesign.html</groupId>
    90       <artifactId>net.java.html.boot</artifactId>
    91       <version>${project.version}</version>
    92       <type>jar</type>
    93     </dependency>
    94     <dependency>
    95       <groupId>org.testng</groupId>
    96       <artifactId>testng</artifactId>
    97       <scope>test</scope>
    98       <type>jar</type>
    99     </dependency>
   100   </dependencies>
   101 </project>