rt/mojo/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 16 May 2013 10:38:20 +0200
changeset 1103 8ee3112f5647
parent 1099 dcc7ab0f2692
child 1286 a83e16b8b825
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     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.apidesign.bck2brwsr</groupId>
     6     <artifactId>rt</artifactId>
     7     <version>0.8-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>bck2brwsr-maven-plugin</artifactId>
    11   <version>0.8-SNAPSHOT</version>
    12   <packaging>maven-plugin</packaging>
    13   <name>Bck2Brwsr Maven Plugin</name>
    14   <url>http://bck2brwsr.apidesign.org/</url>
    15       <build>
    16         <plugins>
    17             <plugin>
    18                 <groupId>org.apache.maven.plugins</groupId>
    19                 <artifactId>maven-plugin-plugin</artifactId>
    20                 <version>3.1</version>
    21                 <configuration>
    22                     <extractors>
    23                         <extractor>java-annotations</extractor>
    24                     </extractors>
    25                     <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
    26                  </configuration>
    27                 <executions>
    28                     <execution>
    29                         <id>mojo-descriptor</id>
    30                         <phase>process-classes</phase>
    31                         <goals>
    32                             <goal>descriptor</goal>
    33                         </goals>
    34                     </execution>
    35                 </executions>
    36             </plugin>
    37             <plugin>
    38                 <groupId>org.apache.maven.plugins</groupId>
    39                 <artifactId>maven-compiler-plugin</artifactId>
    40                 <version>2.3.2</version>
    41                 <configuration>
    42                     <source>1.6</source>
    43                     <target>1.6</target>
    44                 </configuration>
    45             </plugin>
    46         </plugins>
    47       </build>
    48       
    49 <dependencies>
    50     <dependency>
    51       <groupId>org.apache.maven</groupId>
    52       <artifactId>maven-plugin-api</artifactId>
    53       <version>3.0.4</version>
    54       <type>jar</type>
    55     </dependency>
    56     <dependency>
    57       <groupId>org.apache.maven.plugin-tools</groupId>
    58       <artifactId>maven-plugin-annotations</artifactId>
    59       <version>3.0</version>
    60       <type>jar</type>
    61     </dependency>
    62     <dependency>
    63       <groupId>${project.groupId}</groupId>
    64       <artifactId>vm4brwsr</artifactId>
    65       <version>${project.version}</version>
    66       <exclusions>
    67         <exclusion>
    68           <artifactId>emul.mini</artifactId>
    69           <groupId>org.apidesign.bck2brwsr</groupId>
    70         </exclusion>
    71       </exclusions>
    72     </dependency>
    73     <dependency>
    74         <groupId>org.apache.maven</groupId>
    75         <artifactId>maven-core</artifactId>
    76       <version>3.0.2</version>
    77       <type>jar</type>
    78     </dependency>
    79     <dependency>
    80         <groupId>${project.groupId}</groupId>
    81         <artifactId>launcher</artifactId>
    82       <version>${project.version}</version>
    83     </dependency>
    84     <dependency>
    85         <groupId>${project.groupId}</groupId>
    86         <artifactId>launcher.http</artifactId>
    87       <version>${project.version}</version>
    88     </dependency>
    89     <dependency>
    90         <groupId>${project.groupId}</groupId>
    91         <artifactId>launcher.fx</artifactId>
    92       <version>${project.version}</version>
    93     </dependency>
    94 </dependencies>
    95 </project>