launcher/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Feb 2013 13:15:41 +0100
branchemul
changeset 701 bfb3f72249de
parent 544 08ffdc3938e7
permissions -rw-r--r--
Prevent NPE. The static calculator example is now running fine
     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</groupId>
     7     <artifactId>bck2brwsr</artifactId>
     8     <version>0.3-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>launcher</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <name>Bck2Brwsr Launcher</name>
    14   <url>http://maven.apache.org</url>
    15     <build>
    16         <plugins>
    17             <plugin>
    18                 <groupId>org.apache.maven.plugins</groupId>
    19                 <artifactId>maven-compiler-plugin</artifactId>
    20                 <version>2.3.2</version>
    21                 <configuration>
    22                     <source>1.7</source>
    23                     <target>1.7</target>
    24                 </configuration>
    25             </plugin>
    26             <plugin>
    27                 <groupId>org.apache.maven.plugins</groupId>
    28                 <artifactId>maven-javadoc-plugin</artifactId>
    29                 <version>2.8.1</version>
    30                 <configuration>
    31                     <excludePackageNames>org.apidesign.bck2brwsr.launcher.impl</excludePackageNames>
    32                 </configuration>
    33             </plugin>
    34         </plugins>
    35     </build>
    36     <properties>
    37     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    38   </properties>
    39   <dependencies>
    40     <dependency>
    41       <groupId>junit</groupId>
    42       <artifactId>junit</artifactId>
    43       <version>3.8.1</version>
    44       <scope>test</scope>
    45     </dependency>
    46     <dependency>
    47       <groupId>org.glassfish.grizzly</groupId>
    48       <artifactId>grizzly-http-server</artifactId>
    49       <version>2.2.19</version>
    50     </dependency>
    51     <dependency>
    52       <groupId>${project.groupId}</groupId>
    53       <artifactId>vm4brwsr</artifactId>
    54       <version>${project.version}</version>
    55     </dependency>
    56   </dependencies>
    57 </project>