html4j-maven-plugin/pom.xml
branchpreprocess
changeset 331 72dda6af599b
child 425 6729b08befde
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/html4j-maven-plugin/pom.xml	Sun Nov 24 15:39:55 2013 +0100
     1.3 @@ -0,0 +1,101 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<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"
     1.6 +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     1.7 +  <modelVersion>4.0.0</modelVersion>
     1.8 +  <parent>
     1.9 +    <groupId>org.apidesign</groupId>
    1.10 +    <artifactId>html</artifactId>
    1.11 +    <version>0.7-SNAPSHOT</version>
    1.12 +  </parent>
    1.13 +  <packaging>maven-plugin</packaging>
    1.14 +  <groupId>org.apidesign.html</groupId>
    1.15 +  <artifactId>html4j-maven-plugin</artifactId>
    1.16 +  <version>0.7-SNAPSHOT</version>
    1.17 +  <name>html4j-maven-plugin</name>
    1.18 +  <url>http://maven.apache.org</url>
    1.19 +  <properties>
    1.20 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.21 +  </properties>
    1.22 +  <build>
    1.23 +      <plugins>
    1.24 +          <plugin>
    1.25 +              <groupId>org.apache.maven.plugins</groupId>
    1.26 +              <artifactId>maven-plugin-plugin</artifactId>
    1.27 +              <version>3.1</version>
    1.28 +              <configuration>
    1.29 +                  <extractors>
    1.30 +                      <extractor>java-annotations</extractor>
    1.31 +                  </extractors>
    1.32 +                  <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
    1.33 +              </configuration>
    1.34 +              <executions>
    1.35 +                  <execution>
    1.36 +                      <id>mojo-descriptor</id>
    1.37 +                      <phase>process-classes</phase>
    1.38 +                      <goals>
    1.39 +                          <goal>descriptor</goal>
    1.40 +                      </goals>
    1.41 +                  </execution>
    1.42 +              </executions>
    1.43 +          </plugin>
    1.44 +          <plugin>
    1.45 +              <groupId>org.apache.maven.plugins</groupId>
    1.46 +              <artifactId>maven-compiler-plugin</artifactId>
    1.47 +              <version>2.3.2</version>
    1.48 +              <configuration>
    1.49 +                  <source>1.6</source>
    1.50 +                  <target>1.6</target>
    1.51 +              </configuration>
    1.52 +          </plugin>
    1.53 +          <plugin>
    1.54 +              <groupId>org.apidesign.html</groupId>
    1.55 +              <artifactId>html4j-maven-plugin</artifactId>
    1.56 +              <version>${project.version}</version>
    1.57 +              <executions>
    1.58 +                  <execution>
    1.59 +                      <goals>
    1.60 +                          <goal>process-js-annotations</goal>
    1.61 +                      </goals>
    1.62 +                      <phase>process-test-classes</phase>
    1.63 +                      <configuration>
    1.64 +                          <classes>${project.build.directory}/test-classes</classes>
    1.65 +                      </configuration>
    1.66 +                  </execution>
    1.67 +              </executions>
    1.68 +          </plugin>
    1.69 +      </plugins>
    1.70 +  </build>
    1.71 +      
    1.72 +  <dependencies>
    1.73 +      <dependency>
    1.74 +          <groupId>org.apache.maven</groupId>
    1.75 +          <artifactId>maven-plugin-api</artifactId>
    1.76 +          <version>3.0.4</version>
    1.77 +          <type>jar</type>
    1.78 +      </dependency>
    1.79 +      <dependency>
    1.80 +          <groupId>org.apache.maven.plugin-tools</groupId>
    1.81 +          <artifactId>maven-plugin-annotations</artifactId>
    1.82 +          <version>3.0</version>
    1.83 +          <type>jar</type>
    1.84 +      </dependency>
    1.85 +      <dependency>
    1.86 +          <groupId>org.apache.maven</groupId>
    1.87 +          <artifactId>maven-core</artifactId>
    1.88 +          <version>3.0.2</version>
    1.89 +          <type>jar</type>
    1.90 +      </dependency>
    1.91 +    <dependency>
    1.92 +      <groupId>org.apidesign.html</groupId>
    1.93 +      <artifactId>net.java.html.boot</artifactId>
    1.94 +      <version>${project.version}</version>
    1.95 +      <type>jar</type>
    1.96 +    </dependency>
    1.97 +    <dependency>
    1.98 +      <groupId>org.testng</groupId>
    1.99 +      <artifactId>testng</artifactId>
   1.100 +      <scope>test</scope>
   1.101 +      <type>jar</type>
   1.102 +    </dependency>
   1.103 +  </dependencies>
   1.104 +</project>