emul/compact/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 11 Feb 2013 19:47:46 +0100
branchemul
changeset 709 722c51330e75
parent 621 6daa39b17563
permissions -rw-r--r--
Support relaunching of test cases. Just reload the initial browser page and the test cases will be executed again. Useful when setting breakpoints.
     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.apidesign.bck2brwsr</groupId>
     7     <artifactId>emul.pom</artifactId>
     8     <version>0.3-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>emul</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <name>Bck2Brwsr API Profile</name>
    14   <url>http://maven.apache.org</url>
    15   <properties>
    16     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    17   </properties>
    18   <dependencies>
    19     <dependency>
    20       <groupId>${project.groupId}</groupId>
    21       <artifactId>emul.mini</artifactId>
    22       <version>${project.version}</version>
    23       <scope>provided</scope>
    24     </dependency>
    25     <dependency>
    26       <groupId>${project.groupId}</groupId>
    27       <artifactId>vmtest</artifactId>
    28       <version>${project.version}</version>
    29       <scope>test</scope>
    30     </dependency>
    31     <dependency>
    32       <groupId>org.netbeans.api</groupId>
    33       <artifactId>org-openide-util-lookup</artifactId>
    34       <scope>test</scope>
    35     </dependency>
    36   </dependencies>
    37   <build>
    38       <plugins>
    39           <plugin>
    40               <groupId>org.apache.maven.plugins</groupId>
    41               <artifactId>maven-compiler-plugin</artifactId>
    42               <version>2.5.1</version>
    43               <configuration>
    44                   <compilerArguments>
    45                       <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath>
    46                   </compilerArguments>
    47                  <source>1.7</source>
    48                  <target>1.7</target>
    49               </configuration>
    50           </plugin>
    51          <plugin>
    52             <artifactId>maven-assembly-plugin</artifactId>
    53                 <version>2.4</version>
    54                 <executions>
    55                     <execution>
    56                         <id>rt</id>
    57                         <phase>package</phase>
    58                         <goals>
    59                             <goal>single</goal>
    60                         </goals>
    61                         <configuration>
    62                             <descriptors>
    63                                 <descriptor>src/main/assembly/rt.xml</descriptor>
    64                             </descriptors>
    65                             <finalName>bck2brwsr-${project.version}</finalName>
    66                         </configuration>
    67                     </execution>
    68                 </executions>                
    69             </plugin>      
    70       </plugins>
    71   </build>
    72 </project>