rt/mojo/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 19 Nov 2014 19:32:00 +0100
changeset 1723 3a1f262311cf
parent 1715 dcd26599413f
child 1757 837ea3e1cbaf
permissions -rw-r--r--
Separating compact profile tests into own project, so launcher.http can depend on compact profile JAR
     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>1.0-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>bck2brwsr-maven-plugin</artifactId>
    11   <version>1.0-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     </dependency>
    67     <dependency>
    68         <groupId>org.apache.maven</groupId>
    69         <artifactId>maven-core</artifactId>
    70       <version>3.0.2</version>
    71       <type>jar</type>
    72     </dependency>
    73     <dependency>
    74         <groupId>${project.groupId}</groupId>
    75         <artifactId>launcher</artifactId>
    76       <version>${project.version}</version>
    77     </dependency>
    78     <dependency>
    79         <groupId>${project.groupId}</groupId>
    80         <artifactId>launcher.http</artifactId>
    81         <version>${project.version}</version>
    82         <scope>runtime</scope>
    83         <exclusions>
    84             <exclusion>
    85                 <groupId>org.apidesign.bck2brwsr</groupId>
    86                 <artifactId>emul</artifactId>
    87             </exclusion>
    88         </exclusions>
    89     </dependency>
    90     <dependency>
    91         <groupId>${project.groupId}</groupId>
    92         <artifactId>launcher.fx</artifactId>
    93       <version>${project.version}</version>
    94     </dependency>
    95     <dependency>
    96         <groupId>org.apidesign.bck2brwsr</groupId>
    97         <artifactId>aot</artifactId>
    98       <version>1.0-SNAPSHOT</version>
    99       <type>jar</type>
   100     </dependency>
   101 </dependencies>
   102 </project>