rt/mojo/pom.xml
changeset 772 d382dacfd73f
parent 554 05224402145d
child 796 a9fbc3c4be97
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/mojo/pom.xml	Tue Feb 26 16:54:16 2013 +0100
     1.3 @@ -0,0 +1,86 @@
     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.bck2brwsr</groupId>
    1.10 +    <artifactId>rt</artifactId>
    1.11 +    <version>0.3-SNAPSHOT</version>
    1.12 +  </parent>
    1.13 +  <groupId>org.apidesign.bck2brwsr</groupId>
    1.14 +  <artifactId>mojo</artifactId>
    1.15 +  <version>0.3-SNAPSHOT</version>
    1.16 +  <packaging>maven-plugin</packaging>
    1.17 +  <name>Bck2Brwsr Maven Project</name>
    1.18 +  <url>http://maven.apache.org</url>
    1.19 +      <build>
    1.20 +        <plugins>
    1.21 +            <plugin>
    1.22 +                <groupId>org.apache.maven.plugins</groupId>
    1.23 +                <artifactId>maven-plugin-plugin</artifactId>
    1.24 +                <version>3.1</version>
    1.25 +                <configuration>
    1.26 +                    <extractors>
    1.27 +                        <extractor>java-annotations</extractor>
    1.28 +                    </extractors>
    1.29 +                    <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
    1.30 +                 </configuration>
    1.31 +                <executions>
    1.32 +                    <execution>
    1.33 +                        <id>mojo-descriptor</id>
    1.34 +                        <phase>process-classes</phase>
    1.35 +                        <goals>
    1.36 +                            <goal>descriptor</goal>
    1.37 +                        </goals>
    1.38 +                    </execution>
    1.39 +                </executions>
    1.40 +            </plugin>
    1.41 +            <plugin>
    1.42 +                <groupId>org.apache.maven.plugins</groupId>
    1.43 +                <artifactId>maven-compiler-plugin</artifactId>
    1.44 +                <version>2.3.2</version>
    1.45 +                <configuration>
    1.46 +                    <source>1.6</source>
    1.47 +                    <target>1.6</target>
    1.48 +                </configuration>
    1.49 +            </plugin>
    1.50 +        </plugins>
    1.51 +      </build>
    1.52 +      
    1.53 +<dependencies>
    1.54 +    <dependency>
    1.55 +      <groupId>org.apache.maven</groupId>
    1.56 +      <artifactId>maven-plugin-api</artifactId>
    1.57 +      <version>3.0.4</version>
    1.58 +      <type>jar</type>
    1.59 +    </dependency>
    1.60 +    <dependency>
    1.61 +      <groupId>org.apache.maven.plugin-tools</groupId>
    1.62 +      <artifactId>maven-plugin-annotations</artifactId>
    1.63 +      <version>3.0</version>
    1.64 +      <type>jar</type>
    1.65 +    </dependency>
    1.66 +    <dependency>
    1.67 +      <groupId>${project.groupId}</groupId>
    1.68 +      <artifactId>vm4brwsr</artifactId>
    1.69 +      <version>0.3-SNAPSHOT</version>
    1.70 +      <exclusions>
    1.71 +        <exclusion>
    1.72 +          <artifactId>emul.mini</artifactId>
    1.73 +          <groupId>org.apidesign.bck2brwsr</groupId>
    1.74 +        </exclusion>
    1.75 +      </exclusions>
    1.76 +    </dependency>
    1.77 +    <dependency>
    1.78 +        <groupId>org.apache.maven</groupId>
    1.79 +        <artifactId>maven-core</artifactId>
    1.80 +      <version>3.0.2</version>
    1.81 +      <type>jar</type>
    1.82 +    </dependency>
    1.83 +    <dependency>
    1.84 +        <groupId>${project.groupId}</groupId>
    1.85 +        <artifactId>launcher</artifactId>
    1.86 +      <version>${project.version}</version>
    1.87 +    </dependency>
    1.88 +</dependencies>
    1.89 +</project>