<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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>com.fourfivefour</groupId>
    <artifactId>browser</artifactId>
    <packaging>jar</packaging>
    <version>2.0</version>
    <name>GS Run Browser 2</name>
    <description>GS Run Browser (2) Application - 454 Life
        Sciences</description>

    <parent>
        <groupId>com.fourfivefour</groupId>
        <artifactId>AppJavaModules</artifactId>
        <version>1.0</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>com.fourfivefour</groupId>
            <artifactId>common</artifactId>
        </dependency>

        <dependency>
            <groupId>com.fourfivefour</groupId>
            <artifactId>analysis</artifactId>
        </dependency>

        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
        </dependency>

        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
        </dependency>

        <dependency>
            <groupId>javax.help</groupId>
            <artifactId>javahelp</artifactId>
        </dependency>

        <dependency>
            <groupId>net.java.dev.timingframework</groupId>
            <artifactId>timingframework</artifactId>
        </dependency>

        <dependency>
            <groupId>org.apache.xmlrpc</groupId>
            <artifactId>xmlrpc-client</artifactId>
        </dependency>

    </dependencies>

    <ciManagement>
        <system>hudson</system>
        <url>http://hober:8080/</url>
        <notifiers>
            <notifier>
                <type>mail</type>

                <sendOnError>true</sendOnError>
                <sendOnFailure>true</sendOnFailure>
                <sendOnSuccess>false</sendOnSuccess>
                <sendOnWarning>true</sendOnWarning>

                 <configuration>
                     <recipients>jonathan.johnson.jj1@roche.com</recipients>
                     <recipients>jing.li.jl1@roche.com</recipients>
                 </configuration>
            </notifier>
        </notifiers>
    </ciManagement> 

    
    <build>
        <plugins>
       
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>xjc</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <packageName>com.fourfivefour.browser.jaxb.DataProcessing
                    </packageName>
                    <readOnly>false</readOnly>
                </configuration>
            </plugin>

        
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

