"Web pages" and "Source Packages" disappears when adding a parent pom

View: New views
2 Messages — Rating Filter:   Alert me  

"Web pages" and "Source Packages" disappears when adding a parent pom

by viggo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I have a project generated with the following command:
mvn archetype:create -DarchetypeGroupId=org.jboss.portletbridge.archetypes -DarchetypeArtifactId=richfaces-basic -DarchetypeVersion=1.0.0.B2 -DgroupId=com.tracetracker.dashboard -DartifactId=NameOfPortlet -DremoteRepositories=http://repository.jboss.org/maven2/
It creates a richfaces portlet project, and when I open it in Netbeans 6.1 (with Maven 3.1.3 plugin) both the Web pages and Source packages (and all others) are showing in the Projects window. But when I add a reference to an existing pom.xml that contains common information about several of our projects, suddenly both the Web pages and the Source Packages are gone in the Projects window. If I remove the dependency to the parent pom, they come back.
I will add both the pom of the project, and the parent pom if it can help fixing this problem.
project pom:
<?xml version="1.0" encoding="UTF-8"?>
<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">
        <parent>
                <groupId>com.tracetracker</groupId>  
                <artifactId>tt-main</artifactId>  
                <version>4.1.0-SNAPSHOT</version>  
                <relativePath>../tt-main/pom.xml</relativePath>
        </parent>              
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.tracetracker.dashboard</groupId>
    <artifactId>portlet-reports-java</artifactId>
    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>GTNet reports portlet</name>
    <url>http://www.tracetracker.com</url>
    <prerequisites>
        <maven>2.0.6</maven>
    </prerequisites>
    <licenses>
        <license>
            <name></name>
            <url></url>
        </license>
    </licenses>
    <scm>
        <connection></connection>
        <developerConnection></developerConnection>
        <url></url>
    </scm>
    <issueManagement>
        <system></system>
        <url></url>
    </issueManagement>
    <developers>
        <developer>
            <id></id>
            <name></name>
           
            <timezone></timezone>
        </developer>
    </developers>
    <build>
        <defaultGoal>install</defaultGoal>
        <finalName>ReportsPortlet</finalName>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <!--version>2.0.2</version-->
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <wtpversion>1.5</wtpversion>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-idea-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <dependenciesAsLibraries>true</dependenciesAsLibraries>
                    <useFullNames>false</useFullNames>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <repositories>
        <repository>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
                <updatePolicy>never</updatePolicy>
            </snapshots>
            <id>repository.jboss.com</id>
            <name>Jboss Repository for Maven</name>
            <url>http://repository.jboss.com/maven2/</url>
            <layout>default</layout>
        </repository>
        <repository>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
            <id>snapshots.jboss.org</id>
            <name>JBoss Snapshot Repository</name>
            <url>http://snapshots.jboss.org/maven2</url>
        </repository>
    </repositories>
    <dependencies>
        <dependency>
            <groupId>jboss</groupId>
            <artifactId>jboss-j2ee</artifactId>
            <version>4.2.2.GA</version>
            <scope>provided</scope>
        </dependency>      
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.faces</groupId>
            <artifactId>jsf-api</artifactId>
            <version>1.2_04-p02</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.faces</groupId>
            <artifactId>jsf-impl</artifactId>
            <version>1.2_04-p02</version>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <groupId>commons-collections</groupId>
                    <artifactId>commons-collections</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>javax.portlet</groupId>
            <artifactId>portlet-api</artifactId>
            <version>1.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.portletbridge</groupId>
            <artifactId>portletbridge-api</artifactId>
            <version>${portletbridge.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-impl</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.jboss.portletbridge</groupId>
            <artifactId>portletbridge-impl</artifactId>
            <version>${portletbridge.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-impl</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.richfaces.ui</groupId>
            <artifactId>richfaces-ui</artifactId>
            <version>${richfaces.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-impl</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.sun.facelets</groupId>
            <artifactId>jsf-facelets</artifactId>
            <version>1.1.14</version>
        </dependency>
    </dependencies>
    <properties>
        <richfaces.version>3.2.0.GA</richfaces.version>
        <portletbridge.version>1.0.0.B2</portletbridge.version>
    </properties>
</project>

parent pom:
<?xml version="1.0" encoding="UTF-8"?>

<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">  
        <parent>
                <groupId>com.tracetracker</groupId>  
                <artifactId>root</artifactId>  
                <version>1.0.5</version>  
                <!--version>1.0.1</version-->  
                <relativePath>../pom.xml</relativePath>
        </parent>  
        <modelVersion>4.0.0</modelVersion>  
        <groupId>com.tracetracker</groupId>  
        <artifactId>tt-main</artifactId>  
        <name>TraceTracker Main Module</name>  
        <description>Parent POM for all TraceTracker code</description>  
        <packaging>pom</packaging>  
        <version>4.1.0-SNAPSHOT</version>  
        <repositories>
                <repository>
                        <id>marplerepo2</id>  
                        <url>http://mavenrepo.pd.tracetracker.com:9998/repo</url>
                </repository>
        </repositories>  
        <!-- START: The following elements must be present in all sub poms -->  
        <url>${urlBase}tt-main</url>  
        <distributionManagement>
                <site>
                        <id>site</id>  
                        <url>${siteDeployBase}tt-main</url>
                </site>
        </distributionManagement>  
        <scm>
                <connection>${scmConnectionBase}tt-main</connection>  
                <url>${scmUrlBase}tt-main</url>
        </scm>  
        <!-- STOP: -->  
        <!-- Developers list <-->  
        <developers>
                <developer>
                        <name>XXX</name>  
                        <id>XXX</id>  
                        XXX@... 
                        <roles>
                                <role>LEAD</role>
                        </roles>
                </developer>  
        </developers>  
        <!-- The dependencyManagement section is not inherited by submodules -->  
        <!-- It only defines the version, scope and type so that submodules only  -->  
        <!-- need groupId and artifactId when they include dependencies -->  
        <dependencyManagement>
                <dependencies>
                        <!-- THIS SECTION SHOULD NOT CONTAIN TRACETRACKER DEPENDENCIES -->  
                        <dependency>
                                <groupId>commons-cli</groupId>  
                                <artifactId>commons-cli</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-lang</groupId>  
                                <artifactId>commons-lang</artifactId>  
                                <version>2.3</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-httpclient</groupId>  
                                <artifactId>commons-httpclient</artifactId>  
                                <version>3.0.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-digester</groupId>  
                                <artifactId>commons-digester</artifactId>  
                                <version>1.7</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-beanutils</groupId>  
                                <artifactId>commons-beanutils</artifactId>  
                                <version>1.7.0</version>
                        </dependency>  
                        <!-- JWSDP -->  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>jax-qname</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>namespace</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml.bind</groupId>  
                                <artifactId>jsr173_api</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>xsdlib</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>relaxngDatatype</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>jax-qname</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <!-- JAXB 2.0 -->  
                        <dependency>
                                <groupId>com.sun.xml.bind</groupId>  
                                <artifactId>jaxb-xjc</artifactId>  
                                <version>2.0.5</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.sun.xml.bind</groupId>  
                                <artifactId>jaxb-impl</artifactId>  
                                <version>2.0.5</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml.bind</groupId>  
                                <artifactId>jaxb-api</artifactId>  
                                <version>2.0</version>
                        </dependency>  
                        <!-- SPRING -->  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-hibernate3</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-web</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-context</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-aop</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-support</artifactId>  
                                <version>2.0.6</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>javax.mail</groupId>  
                                                <artifactId>mail</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>javax.activation</groupId>  
                                                <artifactId>activation</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>javax.resource</groupId>  
                                                <artifactId>connector</artifactId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-remoting</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-beans</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-mock</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-jdbc</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-dao</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-core</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-jmx</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-webmvc</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-jms</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>aopalliance</groupId>  
                                <artifactId>aopalliance</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <!-- VELOCITY -->  
                        <dependency>
                                <groupId>velocity</groupId>  
                                <artifactId>velocity</artifactId>  
                                <version>1.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>velocity-tools</groupId>  
                                <artifactId>velocity-tools</artifactId>  
                                <version>1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>velocity-tools</groupId>  
                                <artifactId>velocity-tools-extra</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <!-- HIBERNATE -->  
                        <dependency>
                                <groupId>org.hibernate</groupId>  
                                <artifactId>hibernate</artifactId>  
                                <version>3.2.5.ga</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>ehcache</groupId>  
                                                <artifactId>ehcache</artifactId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <!-- OPENSYMPHONY -->  
                        <dependency>
                                <groupId>opensymphony</groupId>  
                                <artifactId>xwork</artifactId>  
                                <version>1.1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>opensymphony</groupId>  
                                <artifactId>webwork</artifactId>  
                                <version>2.2.1</version>
                        </dependency>  
                        <!-- SOURCEFORGE -->  
                        <dependency>
                                <groupId>net.sf.ehcache</groupId>  
                                <artifactId>ehcache</artifactId>  
                                <version>1.3.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>joda-time</groupId>  
                                <artifactId>joda-time</artifactId>  
                                <version>1.3</version>
                        </dependency>  
                        <dependency>
                                <groupId>net.sourceforge.jexcelapi</groupId>  
                                <artifactId>jxl</artifactId>  
                                <version>2.6</version>
                        </dependency>  
                        <!-- CODEHAUS -->  
                        <dependency>
                                <groupId>xstream</groupId>  
                                <artifactId>xstream</artifactId>  
                                <version>230206</version>
                        </dependency>  
                        <!-- OTHERS -->  
                        <dependency>
                                <groupId>jasperreports</groupId>  
                                <artifactId>jasperreports</artifactId>  
                                <version>2.0.5</version>
                        </dependency>  
                        <dependency>
                                <groupId>dom4j</groupId>  
                                <artifactId>dom4j</artifactId>  
                                <version>1.6.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>cglib</groupId>  
                                <artifactId>cglib-nodep</artifactId>  
                                <version>2.1_3</version>
                        </dependency>  
                        <dependency>
                                <groupId>hessian</groupId>  
                                <artifactId>hessian</artifactId>  
                                <version>3.0.13</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.acegisecurity</groupId>  
                                <artifactId>acegi-security</artifactId>  
                                <version>1.0.4</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring-remoting</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring-support</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring-jdbc</artifactId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <dependency>
                                <groupId>org.codehaus.xfire</groupId>  
                                <artifactId>xfire-all</artifactId>  
                                <version>1.2.2</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>javax.xml</groupId>  
                                                <artifactId>jaxb-api</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>jaxb</groupId>  
                                                <artifactId>jaxb-api</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>com.sun.xml.bind</groupId>  
                                                <artifactId>jaxb-impl</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>jaxb</groupId>  
                                                <artifactId>jaxb-impl</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>com.sun.xml.bind</groupId>  
                                                <artifactId>jaxb-xjc</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>woodstox</groupId>  
                                                <artifactId>wstx-asl</artifactId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <dependency>
                                <groupId>axis</groupId>  
                                <artifactId>axis</artifactId>  
                                <version>1.2.1TT</version>
                        </dependency>  
                        <dependency>
                                <groupId>jaf</groupId>  
                                <artifactId>activation</artifactId>  
                                <version>1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml</groupId>  
                                <artifactId>jaxrpc-api</artifactId>  
                                <version>1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>javamail</groupId>  
                                <artifactId>mailapi</artifactId>  
                                <version>1.3.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.mail</groupId>  
                                <artifactId>mail</artifactId>  
                                <version>1.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml</groupId>  
                                <artifactId>saaj</artifactId>  
                                <version>1.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>wsdl4j</groupId>  
                                <artifactId>wsdl4j</artifactId>  
                                <version>1.5.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.apache.ws.commons</groupId>  
                                <artifactId>XmlSchema</artifactId>  
                                <version>1.0.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.htmlparser</groupId>  
                                <artifactId>filterbuilder</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.htmlparser</groupId>  
                                <artifactId>htmllexer</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.htmlparser</groupId>  
                                <artifactId>htmlparser</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.htmlparser</groupId>  
                                <artifactId>thumbelina</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <!-- ## RUNTIME ## -->  
                        <!-- Not neccessary to compile, only needed runtime -->  
                        <dependency>
                                <groupId>jaxen</groupId>  
                                <artifactId>jaxen</artifactId>  
                                <version>1.1</version>  
                                <exclusions>
                                        <exclusion>
                                                <artifactId>xalan</artifactId>  
                                                <groupId>xalan</groupId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <dependency>
                                <groupId>xerces</groupId>  
                                <artifactId>xercesImpl</artifactId>  
                                <version>2.9.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>postgresql</groupId>  
                                <artifactId>postgresql</artifactId>  
                                <version>8.3-603.jdbc3</version>
                        </dependency>  
                        <dependency>
                                <groupId>mysql</groupId>  
                                <artifactId>mysql-connector-java</artifactId>  
                                <version>5.0.5</version>
                        </dependency>  
                        <dependency>
                                <groupId>ant-contrib</groupId>  
                                <artifactId>ant-contrib</artifactId>  
                                <version>1.0b2</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-fileupload</groupId>  
                                <artifactId>commons-fileupload</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-collections</groupId>  
                                <artifactId>commons-collections</artifactId>  
                                <version>2.1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-codec</groupId>  
                                <artifactId>commons-codec</artifactId>  
                                <version>1.3</version>
                        </dependency>  
                        <dependency>
                                <groupId>opensymphony</groupId>  
                                <artifactId>oscore</artifactId>  
                                <version>2.2.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>ognl</groupId>  
                                <artifactId>ognl</artifactId>  
                                <version>2.6.7</version>
                        </dependency>  
                        <dependency>
                                <groupId>oro</groupId>  
                                <artifactId>oro</artifactId>  
                                <version>2.0.8</version>
                        </dependency>  
                        <dependency>
                                <groupId>xpp3</groupId>  
                                <artifactId>xpp3</artifactId>  
                                <version>1.1.3.4d_b4_min</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.rifers</groupId>  
                                <artifactId>rife-continuations</artifactId>  
                                <version>0.0.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>antlr</groupId>  
                                <artifactId>antlr</artifactId>  
                                <version>2.7.7</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-discovery</groupId>  
                                <artifactId>commons-discovery</artifactId>  
                                <version>0.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.apache.poi</groupId>  
                                <artifactId>poi</artifactId>  
                                <version>3.0.2-FINAL</version>
                        </dependency>  
                        <dependency>
                                <groupId>stax</groupId>  
                                <artifactId>stax-api</artifactId>  
                                <version>1.0.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>woodstox</groupId>  
                                <artifactId>wstx-asl</artifactId>  
                                <version>2.9.3</version>
                        </dependency>  
                        <dependency>
                                <groupId>woodstox</groupId>  
                                <artifactId>wstx-api</artifactId>  
                                <version>2.9</version>
                        </dependency>  
                        <dependency>
                                <groupId>jfree</groupId>  
                                <artifactId>jcommon</artifactId>  
                                <version>1.0.8</version>
                        </dependency>  
                        <dependency>
                                <groupId>jfree</groupId>  
                                <artifactId>jfreechart</artifactId>  
                                <version>1.0.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>jdom</groupId>  
                                <artifactId>jdom</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.lowagie</groupId>  
                                <artifactId>itext</artifactId>  
                                <version>1.3.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.lowagie</groupId>  
                                <artifactId>itextasian</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.svnkit</groupId>  
                                <artifactId>svnkit</artifactId>  
                                <version>1.1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.svnkit</groupId>  
                                <artifactId>svnkit-cli</artifactId>  
                                <version>1.1.0</version>
                        </dependency>  
                        <!-- ## PROVIDED SCOPE ## -->  
                        <!-- Needed to compile, but should not be bundled since they are provided by server -->  
                        <dependency>
                                <groupId>commons-logging</groupId>  
                                <artifactId>commons-logging</artifactId>  
                                <version>1.0.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>log4j</groupId>  
                                <artifactId>log4j</artifactId>  
                                <version>1.2.13</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.servlet</groupId>  
                                <artifactId>servlet-api</artifactId>  
                                <version>2.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.jms</groupId>  
                                <artifactId>jms</artifactId>  
                                <version>1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>jboss</groupId>  
                                <artifactId>jboss-j2ee</artifactId>  
                                <version>4.2.2.GA</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml</groupId>  
                                <artifactId>jaxrpc-api</artifactId>  
                                <version>1.1</version>
                        </dependency>
                        <dependency>
                                <groupId>org.codehaus.enunciate</groupId>  
                                <artifactId>enunciate-top</artifactId>  
                                <version>1.5</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring</artifactId>
                                        </exclusion>  
                                        <!--exclusion>
                                                <groupId>org.codehaus.xfire</groupId>  
                                                <artifactId>xfire-all</artifactId>
                                        </exclusion-->
                                </exclusions>
                        </dependency>  
                        <!-- ## TEST ## -->  
                        <dependency>
                                <groupId>xmlbeans</groupId>  
                                <artifactId>xmlpublic</artifactId>  
                                <version>2.2.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>xmlbeans</groupId>  
                                <artifactId>xbean</artifactId>  
                                <version>2.2.0</version>
                        </dependency>
                </dependencies>
        </dependencyManagement>  
        <!-- Dependencies inherrited by submodules -->  
        <!-- Common build settings -->  
        <build>
                <sourceDirectory>src/java</sourceDirectory>  
                <testSourceDirectory>test/java</testSourceDirectory>  
                <defaultGoal>install</defaultGoal>  
                <pluginManagement>
                        <plugins>
                                <!-- INTERNAL -->  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>dashboard</artifactId>  
                                        <version>1.3.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>jaxb</artifactId>  
                                        <version>2.0.5</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>projectset</artifactId>  
                                        <version>1.0.6</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>spring</artifactId>  
                                        <version>1.3.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttaxis</artifactId>  
                                        <version>1.0.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttclient</artifactId>  
                                        <version>1.2.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttcommon</artifactId>  
                                        <version>1.5.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttear</artifactId>  
                                        <version>1.3.4</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttapplet</artifactId>  
                                        <version>1.0.4</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttgqi</artifactId>  
                                        <version>1.4.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttinstaller</artifactId>  
                                        <version>1.3.5</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttsdocbook</artifactId>  
                                        <version>1.1.4</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttwar</artifactId>  
                                        <version>1.1.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttxfire</artifactId>  
                                        <version>1.3.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>velocity</artifactId>  
                                        <version>1.1.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>autorelease</artifactId>  
                                        <version>1.3.9-SNAPSHOT</version>
                                </plugin>  
                                <!--plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttjira</artifactId>  
                                        <version>1.0.5</version>
                                </plugin-->  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>nonjavatask</artifactId>  
                                        <version>1.2.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttnightly</artifactId>  
                                        <version>3.1.1</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>tthastings</artifactId>  
                                        <version>3.0.3</version>  
                                        <configuration>
                                                <mitBasedir>${tracetracker.multi-instance.baseDir}</mitBasedir>  
                                                <gtnMitBasedir>${tracetracker.gtn.multi-instance.baseDir}</gtnMitBasedir>  
                                                <tixMitBasedir>${tracetracker.tix.multi-instance.baseDir}</tixMitBasedir>  
                                                <tixViMitBasedir>${tracetracker.tix-vi.multi-instance.baseDir}</tixViMitBasedir>  
                                                <myMitBaseDir>${tracetracker.tix.multi-instance.baseDir}</myMitBaseDir>  
                                                <viMode>true</viMode>  
                                                <appServerConfigDir>${maven.jboss.conf.dir}</appServerConfigDir>  
                                                <appServerDeployDir>${maven.jboss.deploy.dir}</appServerDeployDir>  
                                                <roleMapTemplate>role-map.vm</roleMapTemplate>  
                                                <gnsFragmentTemplate>gns-override-fragment.vm</gnsFragmentTemplate>  
                                                <jbossDeployDir>${tt.deploy.dir}</jbossDeployDir>  
                                                <jbossConfDir>${tt.conf.dir}</jbossConfDir>  
                                                <jbossLibDir>${tt.lib.dir}</jbossLibDir>  
                                                <jbossHomeDir>${tt.user.jboss.home}</jbossHomeDir>  
                                                <jbossPortalHomeDir>${tt.user.jboss.portal.home}</jbossPortalHomeDir>  
                                                <jbossPortalHomeDir>${tt.user.jboss.portal.home}</jbossPortalHomeDir>  
                                                <jbossTmpDeployDir>${tt.tmp.deploy.dir}</jbossTmpDeployDir>  
                                                <tracetrackerBuildSelfcontained>${tracetrackerBuildSelfcontained}</tracetrackerBuildSelfcontained>  
                                                <virtualHosts>web,import,remoting</virtualHosts>  
                                                <propertyRoots>tracetracker</propertyRoots>  
                                                <transformAliasWithPrefix>${maven.hastings.jartool.transform.aliasWithPrefix}</transformAliasWithPrefix>  
                                                <transformFileNamePattern>${maven.hastings.jartool.transform.pattern}</transformFileNamePattern>  
                                                <dataSourceTemplateLocation>../tt-main/src/resources/</dataSourceTemplateLocation>  
                                                <dependenciesProjects>
                                                        <dependenciesProject>tix-main</dependenciesProject>  
                                                        <dependenciesProject>gtn-main</dependenciesProject>
                                                </dependenciesProjects>  
                                                <commonConfigurations>
                                                        <customConfiguration>
                                                                <name>security-config.xml</name>  
                                                                <merge>false</merge>
                                                        </customConfiguration>
                                                </commonConfigurations>  
                                                <commonMitConfigurations>
                                                        <customConfiguration>
                                                                <name>role-map.xml</name>  
                                                                <merge>false</merge>
                                                        </customConfiguration>
                                                </commonMitConfigurations>  
                                                <supportedDbProviders>
                                                        <supportedDbProvider>postgresql</supportedDbProvider>  
                                                        <supportedDbProvider>mysql-connector-java</supportedDbProvider>
                                                </supportedDbProviders>
                                        </configuration>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttmarlowe</artifactId>  
                                        <version>1.4.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>tti18n</artifactId>  
                                        <version>1.2.0</version>  
                                        <configuration>
                                                <includes>
                                                        <include>**/src/resources/**/*.properties</include>  
                                                        <include>**/src/main/resources/**/*.properties</include>  
                                                        <include>tt-report-plugins/**/*.properties</include>
                                                </includes>
                                        </configuration>
                                </plugin>  
                                <!-- EXTERNAL -->  
                                <plugin>
                                        <artifactId>maven-antrun-plugin</artifactId>  
                                        <version>1.1</version>  
                                        <dependencies>
                                                <dependency>
                                                        <groupId>com.jcraft</groupId>  
                                                        <artifactId>jsch</artifactId>  
                                                        <version>0.1.29</version>
                                                </dependency>  
                                                <dependency>
                                                        <groupId>ant</groupId>  
                                                        <artifactId>ant-jsch</artifactId>  
                                                        <version>1.6.5</version>
                                                </dependency>  
                                                <dependency>
                                                        <groupId>ant</groupId>  
                                                        <artifactId>ant-trax</artifactId>  
                                                        <version>1.6.5</version>
                                                </dependency>  
                                                <dependency>
                                                        <groupId>ant</groupId>  
                                                        <artifactId>optional</artifactId>  
                                                        <version>1.5.4</version>
                                                </dependency>  
                                                <dependency>
                                                        <!-- Needed for running native2ascii -->  
                                                        <groupId>com.sun</groupId>  
                                                        <artifactId>tools</artifactId>  
                                                        <version>1.5.0.12</version>
                                                </dependency>
                                        </dependencies>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-antlr-plugin</artifactId>  
                                        <version>2.0-beta-1</version>
                                </plugin>  
                                <plugin>
                                        <groupId>org.codehaus.mojo</groupId>  
                                        <artifactId>cobertura-maven-plugin</artifactId>  
                                        <version>2.2</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-surefire-plugin</artifactId>  
                                        <version>2.4.3</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-assembly-plugin</artifactId>  
                                        <version>2.1</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-deploy-plugin</artifactId>  
                                        <version>2.3</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-ear-plugin</artifactId>  
                                        <version>2.3</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-ejb-plugin</artifactId>  
                                        <version>2.0</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-war-plugin</artifactId>  
                                        <version>2.0.2</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-eclipse-plugin</artifactId>  
                                        <version>2.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>org.codehaus.enunciate</groupId>  
                                        <artifactId>maven-enunciate-plugin</artifactId>  
                                        <version>1.5</version>  
                                        <extensions>true</extensions>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>maven-source-plugin</artifactId>  
                                        <version>2.0.4</version>
                                </plugin>
                        </plugins>
                </pluginManagement>  
                <plugins>
                        <!-- PLUGIN CONFIGURATION ONLY -->  
                        <plugin>
                                <artifactId>maven-compiler-plugin</artifactId>  
                                <configuration>
                                        <verbose>false</verbose>  
                                        <source>1.5</source>  
                                        <target>1.5</target>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-eclipse-plugin</artifactId>  
                                <configuration>
                                        <buildOutputDirectory>${basedir}/bin</buildOutputDirectory>  
                                        <additionalBuildcommands>
                                                <buildcommand>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</buildcommand>
                                        </additionalBuildcommands>  
                                        <additionalProjectnatures>
                                                <projectnature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</projectnature>
                                        </additionalProjectnatures>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-surefire-plugin</artifactId>  
                                <configuration>
                                        <includes>
                                                <include>**/*Test.java</include>
                                        </includes>  
                                        <systemProperties>
                                                <property>
                                                        <name>maven.junit.sysproperties</name>  
                                                        <value>log4j.configuration java.awt.headless</value>
                                                </property>  
                                                <property>
                                                        <name>log4j.configuration</name>  
                                                        <value>log4j.xml</value>
                                                </property>  
                                                <property>
                                                        <name>java.awt.headless</name>  
                                                        <value>true</value>
                                                </property>
                                        </systemProperties>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-ejb-plugin</artifactId>  
                                <configuration>
                                        <archive>
                                                <manifestFile>${project.build.directory}/MANIFEST.MF</manifestFile>  
                                                <manifest>
                                                        <addClasspath>false</addClasspath>
                                                </manifest>
                                        </archive>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-war-plugin</artifactId>  
                                <configuration>
                                        <warSourceDirectory>${project.basedir}/src/webapp</warSourceDirectory>  
                                        <excludes>**/MANIFEST.MF</excludes>  
                                        <archive>
                                                <manifestFile>${project.build.directory}/MANIFEST.MF</manifestFile>  
                                                <manifest>
                                                        <addClasspath>false</addClasspath>
                                                </manifest>
                                        </archive>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>tthastings</artifactId>  
                                <configuration>
                                        <sharedLibPoms>
                                                <com.tracetracker.plugins.util.MojoArtifact>
                                                        <groupId>com.tracetracker</groupId>  
                                                        <artifactId>tix-j2ee</artifactId>
                                                </com.tracetracker.plugins.util.MojoArtifact>  
                                                <com.tracetracker.plugins.util.MojoArtifact>
                                                        <groupId>com.tracetracker</groupId>  
                                                        <artifactId>gtn-j2ee</artifactId>
                                                </com.tracetracker.plugins.util.MojoArtifact>
                                        </sharedLibPoms>
                                </configuration>
                        </plugin>  
                        <!-- PLUGIN EXECUTIONS -->  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>ttcommon</artifactId>  
                                <configuration>
                                        <validateParent>false</validateParent>  
                                        <verbose>false</verbose>
                                </configuration>  
                                <executions>
                                        <execution>
                                                <id>tt-main-validate</id>  
                                                <phase>validate</phase>  
                                                <goals>
                                                        <goal>info</goal>
                                                </goals>
                                        </execution>  
                                        <execution>
                                                <id>tt-main-initialize</id>  
                                                <phase>initialize</phase>  
                                                <goals>
                                                        <goal>project-validate</goal>
                                                </goals>
                                        </execution>  
                                        <execution>
                                                <id>tt-main-generate-resources</id>  
                                                <phase>generate-resources</phase>  
                                                <goals>
                                                        <goal>manifest-generate</goal>
                                                </goals>
                                        </execution>  
                                        <execution>
                                                <id>tt-main-test-prepare</id>  
                                                <phase>process-test-resources</phase>  
                                                <goals>
                                                        <goal>test-prepare</goal>
                                                </goals>
                                        </execution>
                                </executions>
                        </plugin>  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>ttwar</artifactId>  
                                <executions>
                                        <execution>
                                                <goals>
                                                        <goal>war-cleanup</goal>
                                                </goals>  
                                                <configuration>
                                                        <verbose>false</verbose>  
                                                        <archive>
                                                                <manifestFile>${project.build.directory}/MANIFEST.MF</manifestFile>  
                                                                <manifest>
                                                                        <addClasspath>false</addClasspath>
                                                                </manifest>
                                                        </archive>
                                                </configuration>
                                        </execution>
                                </executions>
                        </plugin>  
                        <plugin>
                                <groupId>org.codehaus.mojo</groupId>  
                                <artifactId>cobertura-maven-plugin</artifactId>  
                                <executions>
                                        <execution>
                                                <phase>site</phase>  
                                                <goals>
                                                        <goal>clean</goal>
                                                </goals>
                                        </execution>
                                </executions>
                        </plugin>  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>maven-source-plugin</artifactId>  
                                <executions>
                                        <execution>
                                                <phase>package</phase>  
                                                <goals>
                                                        <goal>ttjar</goal>
                                                </goals>
                                        </execution>
                                </executions>
                        </plugin>
                </plugins>  
                <resources>
                        <resource>
                                <directory>src/resources</directory>
                        </resource>
                </resources>  
                <testResources>
                        <testResource>
                                <directory>test/resources</directory>
                        </testResource>
                </testResources>
        </build>  
        <!-- Site reports -->  
        <reporting>
                <plugins>
                        <plugin>
                                <artifactId>maven-project-info-reports-plugin</artifactId>  
                                <version>2.0.1</version>  
                                <reportSets>
                                        <reportSet>
                                                <reports>
                                                        <report>index</report>  
                                                        <report>summary</report>  
                                                        <report>dependencies</report>  
                                                        <report>project-team</report>  
                                                        <report>cim</report>  
                                                        <report>issue-tracking</report>  
                                                        <report>scm</report>  
                                                        <report>dependency-convergence</report>
                                                </reports>
                                        </reportSet>
                                </reportSets>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-javadoc-plugin</artifactId>  
                                <version>2.2</version>  
                                <configuration>
                                        <source>1.5</source>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-jxr-plugin</artifactId>  
                                <version>2.0</version>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-surefire-report-plugin</artifactId>  
                                <version>2.3</version>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-checkstyle-plugin</artifactId>  
                                <configuration>
                                        <enableRulesSummary>false</enableRulesSummary>  
                                        <configLocation>http://${pd.scm}/trunk/tt-main/tt_checkstyle.xml</configLocation>  
                                        <excludes>**/client/http/example/*.java,**/gqi/example/gui/*.java,**/jaxb/**/*.java,**/HelloService*.java,**/wsdl/*.java,**/tracetracker/antlr/**/*.java</excludes>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-pmd-plugin</artifactId>  
                                <version>2.1</version>  
                                <configuration>
                                        <targetJdk>1.5</targetJdk>  
                                        <rulesets>
                                                <ruleset>${project.basedir}/../tt-main/pmd.xml</ruleset>
                                        </rulesets>  
                                        <excludes>
                                                <exclude>**/jaxb/**/*.java</exclude>  
                                                <exclude>**/wsdl/*.java</exclude>
                                        </excludes>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <groupId>org.codehaus.mojo</groupId>  
                                <artifactId>cobertura-maven-plugin</artifactId>  
                                <version>2.2</version>  
                                <configuration>
                                        <formats>
                                                <format>html</format>  
                                                <format>xml</format>
                                        </formats>
                                </configuration>
                        </plugin>  
                        <!--plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>ttjira</artifactId>  
                                <inherited>false</inherited>  
                                <configuration>
                                        <ids>
                                                <id>project-10020</id>  
                                                <id>project-10051</id>  
                                                <id>project-10010</id>  
                                                <id>project-10040</id>  
                                                <id>project-10011</id>  
                                                <id>project-10041</id-->  
                        <!--id>project-10050</id-->  
                        <!--id>project-10030</id>
                                        </ids>  
                                        <excludes>
                                                <exclude>Fix For Versions (non-archived)</exclude>  
                                                <exclude>Fix For Versions (all)</exclude>  
                                                <exclude>Raised In Versions (non-archived)</exclude>  
                                                <exclude>Raised In Versions (all)</exclude>
                                        </excludes>
                                </configuration>
                        </plugin-->  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>nonjavatask</artifactId>  
                                <configuration>
                                        <tasks>
                                                <task>TODO</task>
                                        </tasks>  
                                        <excludes>
                                                <exclude>eclipse_code_templates.xml</exclude>  
                                                <exclude>tt_checkstyle.xml</exclude>
                                        </excludes>
                                </configuration>
                        </plugin>
                </plugins>
        </reporting>  
        <!-- Profiles -->  
        <profiles>
                <profile>
                        <id>nightly-deploy-snapshots</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <groupId>com.tracetracker.plugins</groupId>  
                                                <artifactId>ttnightly</artifactId>  
                                                <executions>
                                                        <execution>
                                                                <phase>install</phase>  
                                                                <inherited>true</inherited>  
                                                                <goals>
                                                                        <goal>deploy-snapshot</goal>
                                                                </goals>
                                                        </execution>
                                                </executions>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <id>slurp</id>  
                        <modules>
                                <module>../app-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>gtn-bin</id>  
                        <modules>
                                <module>../gtn-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>tix-bin</id>  
                        <modules>
                                <module>../tix-main</module>  
                                <module>../tix-vi-main</module>
                        </modules>
                </profile>  
                <profile>
                        <!-- This profile will compile tests but don't execute -->  
                        <id>testskip</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <skip>true</skip>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <!-- This profile will neither compile nor execute tests -->  
                        <id>testexclude</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-compiler-plugin</artifactId>  
                                                <configuration>
                                                        <skip>true</skip>  
                                                        <!-- Skipping test compilation -->
                                                </configuration>
                                        </plugin>  
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <skip>true</skip>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <!-- This profile will run Test and TestHeavy tests -->  
                        <id>testheavy</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <includes>
                                                                <include>**/*Test.java</include>  
                                                                <include>**/*TestHeavy.java</include>
                                                        </includes>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <!-- This profile will run TestIntegration tests -->  
                        <id>testintegration</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <includes>
                                                                <include>**/*TestIntegration.java</include>
                                                        </includes>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <!-- This profile will run ALL tests -->  
                        <id>testall</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <includes>
                                                                <include>**/*Test.java</include>  
                                                                <include>**/*TestHeavy.java</include>  
                                                                <include>**/*TestIntegration.java</include>
                                                        </includes>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <id>arch</id>  
                        <modules>
                                <module>../arch-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>tools</id>  
                        <modules>
                                <module>../tools-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>app</id>  
                        <modules>
                                <module>../app-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>appext</id>  
                        <modules>
                                <!--module>../app-blue-java</module-->  
                                <module>../app-cleopatra-java</module>  
                                <module>../app-gepirclient-java</module>  
                                <module>../app-iang-java</module>  
                                <module>../app-njord-java</module>  
                                <module>../app-slurp-web</module>  
                                <module>../app-tracker-java</module>  
                                <module>../app-trackerdog-java</module>
                        </modules>
                </profile>  
                <profile>
                        <id>portlet</id>  
                        <modules>
                                <module>../portlet-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>gtn</id>  
                        <modules>
                                <module>../gtn-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>tix</id>  
                        <modules>
                                <module>../tix-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>galaxy</id>  
                        <modules>
                                <module>../galaxy-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>tix-vi</id>  
                        <modules>
                                <module>../tix-vi-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>all</id>  
                        <modules>
                                <module>../app-blue-java</module>  
                                <module>../app-cleopatra-java</module>  
                                <module>../app-gepirclient-java</module>  
                                <module>../app-iang-java</module>  
                                <module>../app-jabberclient-java</module>  
                                <module>../app-main</module>  
                                <module>../app-njord-java</module>  
                                <module>../app-slurp-web</module>  
                                <module>../app-tracker-java</module>  
                                <module>../app-trackerdog-java</module>  
                                <module>../arch-main</module>  
                                <module>../galaxy-main</module>  
                                <module>../gtn-main</module>  
                                <module>../int-sap-adapter-java</module>  
                                <module>../json-rpc-client</module>  
                                <module>../lib-jboss-java</module>  
                                <module>../lib-epcis-java</module>  
                                <module>../portlet-main</module>  
                                <module>../tix-main</module>  
                                <module>../tix-vi-main</module>  
                                <module>../tools-doclet-java</module>  
                                <module>../tools-main</module>  
                                <module>../tt-test-java</module>  
                                <module>../tt-report-plugins</module>
                        </modules>
                </profile>  
                <profile>
                        <!-- This profile will create a JBoss instance with JBoss Portal support -->  
                        <id>portal</id>  
                        <build>
                                <plugins>
                                        <!--plugin>
                                                <groupId>com.tracetracker.plugins</groupId>  
                                                <artifactId>ttmarlowe</artifactId>  
                                                <inherited>false</inherited>  
                                                <configuration>
                                                        <goal>db</goal>  
                                                        <type>portal</type>  
                                                        <myMitBaseDir>${tracetracker.tix.multi-instance.baseDir}</myMitBaseDir>  
                                                        <subgoals>
                                                                <subgoal>recreate-db</subgoal>
                                                        </subgoals>
                                                </configuration>
                                        </plugin-->  
                                        <plugin>
                                                <groupId>com.tracetracker.plugins</groupId>  
                                                <artifactId>tthastings</artifactId>  
                                                <configuration>
                                                        <goal>jboss</goal>  
                                                        <jbossPortalSupport>true</jbossPortalSupport>  
                                                        <myMitBaseDir>${tracetracker.tix.multi-instance.baseDir}</myMitBaseDir>  
                                                        <dataSourceTemplateLocation>${basedir}/../portlet-main/src/install/resources</dataSourceTemplateLocation>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>  
                        <properties>
                                <mavenJbossDefaultConfExcludes>${mavenJbossPortalConfExcludes}</mavenJbossDefaultConfExcludes>  
                                <mavenJbossDefaultDeployExcludes>${mavenJbossPortalDeployExcludes}</mavenJbossDefaultDeployExcludes>  
                                <mavenJbossDefaultLibExcludes>${mavenJbossPortalLibExcludes}</mavenJbossDefaultLibExcludes>  
                                <tracetracker.serverapp.name>jboss</tracetracker.serverapp.name>  
                                <tracetracker.instance.name>portal</tracetracker.instance.name>  
                                <tracetracker.database.name>${user.name}-portal</tracetracker.database.name>
                        </properties>
                </profile>  
                <profile>
                        <id>checki18n</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <groupId>com.tracetracker.plugins</groupId>  
                                                <artifactId>tti18n</artifactId>  
                                                <inherited>false</inherited>  
                                                <executions>
                                                        <execution>
                                                                <id>getmissingtexts</id>  
                                                                <phase>process-resources</phase>  
                                                                <goals>
                                                                        <goal>getmissingresourcetexts</goal>
                                                                </goals>
                                                        </execution>
                                                </executions>  
                                                <configuration>
                                                        <locales>
                                                                <locale>en</locale>  
                                                                <locale>no</locale>  
                                                                <locale>de</locale>  
                                                                <locale>zh</locale>
                                                        </locales>  
                                                        <resouceBundleFolder>src/resources</resouceBundleFolder>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>
        </profiles>  
        <properties>
                <!-- Velocity merge properties -->  
                <sessionFacade>LocalSessionFacade</sessionFacade>  
                <viewType>local</viewType>  
                <mavenJbossDefaultConfExcludes>${mavenJbossPortalConfExcludes},props/**,xmdesc/AttributePersistenceService-xmbean.xml,standardjaws.xml,jboss-log4j.xml</mavenJbossDefaultConfExcludes>  
                <mavenJbossPortalConfExcludes/>  
                <mavenJbossDefaultDeployExcludes>${mavenJbossPortalDeployExcludes},jboss-bean.deployer/**,jboss-aop-jdk50.deployer/**,ejb3.deployer/**,ejb3-interceptors-aop.xml,mail-ra.rar,mail-service.xml,cache-invalidation-service.xml,client-deployer-service.xml,hsqldb-ds.xml,jms/**,http-invoker.sar/**,management/**,monitoring-service.xml,jboss-web.deployer/ROOT.war/**,properties-service.xml,scheduler-service.xml,schedule-manager-service.xml,quartz-ra.rar,uuid-key-generator.sar/**,bsh-deployer.xml,jbossws.sar/**,*-ha-*.rar</mavenJbossDefaultDeployExcludes>  
                <mavenJbossPortalDeployExcludes/>  
                <tracetrackerBuildSelfcontained>false</tracetrackerBuildSelfcontained>  
                <mavenJbossDefaultLibExcludes>${mavenJbossPortalLibExcludes},antlr.jar,bsh.jar,cglib.jar,dom4j.jar,hibernate*.jar,javassist.jar,scheduler-plugin.jar,autonumber-plugin.jar,bsh-deployer.jar,ejb3-persistence.jar,hsqldb.jar,hsqldb-plugin.jar,jaxen.jar,jboss-backport-concurrent.jar,jboss-cache-jdk50.jar,jboss-hibernate.jar,jboss-jaxws.jar,jboss-monitoring.jar,jbossmq.jar,joesnmp.jar,log4j-snmp-appender.jar,mail-plugin.jar,properties-plugin.jar,quartz.jar</mavenJbossDefaultLibExcludes>  
                <mavenJbossPortalLibExcludes/>  
                <sharedMavenJbossDefaultLibExcludes>${mavenJbossDefaultLibExcludes},activation.jar</sharedMavenJbossDefaultLibExcludes>  
                <j2eeVersion>${project.version}</j2eeVersion>  
                <tracetrackerServerCertKeyStoreFile>security/${user.name}.jks</tracetrackerServerCertKeyStoreFile>  
                <tracetrackerServerCertKeyStorePassword>${user.name}kspw</tracetrackerServerCertKeyStorePassword>  
                <!-- Default plugin properties -->  
                <tracetracker.multi-instance.baseDir>${basedir}/../tt-main/multi-instance</tracetracker.multi-instance.baseDir>  
                <tracetracker.gtn.multi-instance.baseDir>${basedir}/../gtn-main/multi-instance</tracetracker.gtn.multi-instance.baseDir>  
                <tracetracker.tix.multi-instance.baseDir>${basedir}/../tix-main/multi-instance</tracetracker.tix.multi-instance.baseDir>  
                <tracetracker.tix-vi.multi-instance.baseDir>${basedir}/../tix-vi-main/multi-instance</tracetracker.tix-vi.multi-instance.baseDir>  
                <!--tracetracker.jboss.dataSource.template>${basedir}/../tt-main/src/resources/${tracetracker.database.type}-ds.vm</tracetracker.jboss.dataSource.template-->  
                <maven.jboss.conf.dir>${basedir}/../tt-main/src/conf/jboss4/conf</maven.jboss.conf.dir>  
                <maven.jboss.deploy.dir>${basedir}/../tt-main/src/conf/jboss4/deploy</maven.jboss.deploy.dir>  
                <maven.jboss.conf.name>tracetracker</maven.jboss.conf.name>  
                <tt.deploy.dir>${basedir}/../tt-main/target/jboss/${maven.jboss.conf.name}/deploy</tt.deploy.dir>  
                <tt.conf.dir>${basedir}/../tt-main/target/jboss/${maven.jboss.conf.name}/conf</tt.conf.dir>  
                <tt.lib.dir>${basedir}/../tt-main/target/jboss/${maven.jboss.conf.name}/lib</tt.lib.dir>  
                <tt.tmp.deploy.dir>${basedir}/../tt-main/target/jboss/${maven.jboss.conf.name}/tmp/deploy</tt.tmp.deploy.dir>  
                <tracetracker.virtualhost.web>localhost</tracetracker.virtualhost.web>  
                <tracetracker.virtualhost.remoting>localhost</tracetracker.virtualhost.remoting>  
                <tracetracker.virtualhost.import>localhost</tracetracker.virtualhost.import>  
                <tracetracker.role-mapping.use-mapped-roles-only>false</tracetracker.role-mapping.use-mapped-roles-only>  
                <tracetracker.server.type>jboss</tracetracker.server.type>  
                <!-- Keystores -->  
                <tracetracker.server-cert.key-store.file>${tracetrackerServerCertKeyStoreFile}</tracetracker.server-cert.key-store.file>  
                <tracetracker.server-cert.key-store.password>${tracetrackerServerCertKeyStorePassword}</tracetracker.server-cert.key-store.password>  
                <tracetracker.trust-store.url>security/trust/testcacerts</tracetracker.trust-store.url>  
                <tracetracker.trust-store.password>XXX</tracetracker.trust-store.password>  
                <tracetracker.data.hibernate.properties-template>${basedir}/../tt-main/src/resources/hibernate-${tracetracker.database.type}.properties.vm</tracetracker.data.hibernate.properties-template>  
                <maven.hastings.jartool.transform.aliasWithPrefix>com</maven.hastings.jartool.transform.aliasWithPrefix>  
                <maven.hastings.jartool.transform.pattern>.*.war|.*.sar|.*-(biz|prez)-.*.jar</maven.hastings.jartool.transform.pattern>  
                <!-- These database settings are default unless overriden in the instance properties -->  
                <tracetracker.data.hibernate.dialect>org.hibernate.dialect.PostgreSQLDialect</tracetracker.data.hibernate.dialect>  
                <tracetracker.data.hibernate.showSql>false</tracetracker.data.hibernate.showSql>  
                <tracetracker.database.host>foyle</tracetracker.database.host>  
                <tracetracker.database.type>postgres</tracetracker.database.type>  
                <tracetracker.database.port>XXX</tracetracker.database.port>  
                <tracetracker.database.username>XXX</tracetracker.database.username>  
                <tracetracker.database.password>XXX</tracetracker.database.password>  
                <tracetracker.database.postgres.admin.username>XXX</tracetracker.database.postgres.admin.username>  
                <tracetracker.database.postgres.admin.password>XXX</tracetracker.database.postgres.admin.password>  
                <tracetracker.database.postgres.admin.encoding>UNICODE</tracetracker.database.postgres.admin.encoding>  
                <tracetracker.database.postgres.hibernate.delimiter>;</tracetracker.database.postgres.hibernate.delimiter>  
                <tracetracker.database.mysql.admin.username>XXX</tracetracker.database.mysql.admin.username>  
                <tracetracker.database.mysql.admin.password>XXX</tracetracker.database.mysql.admin.password>  
                <tracetracker.database.mysql.admin.encoding>UTF8</tracetracker.database.mysql.admin.encoding>  
                <tracetracker.database.mysql.hibernate.delimiter>;</tracetracker.database.mysql.hibernate.delimiter>  
                <!-- Default properties for properties defined in "user" profile in settings.xml -->  
                <tt.user.jboss.home>Set "tt.user.jboss.home" in settings.xml</tt.user.jboss.home>  
                <tt.user.jboss.portal.home>Set "tt.user.jboss.portal.home" in settings.xml</tt.user.jboss.portal.home>  
                <tracetrackerProductGTN>GTNet</tracetrackerProductGTN>  
                <projectBasedir>${project.basedir}</projectBasedir>  
                <tracetrackerVersion>${project.version}</tracetrackerVersion>  
                <tracetrackerOrganization>${project.organization.name}</tracetrackerOrganization>  
                <tracetrackerProductGAN>GTNet Access Node</tracetrackerProductGAN>  
                <tracetracker.tix.engine.name>engine</tracetracker.tix.engine.name>  
                <tracetracker.tix.engine.base-path>/tix-${tracetracker.tix.engine.name}</tracetracker.tix.engine.base-path>  
                <tracetracker.epcis.enabled>false</tracetracker.epcis.enabled>  
                <scmTagPrefix>TT_MAIN_</scmTagPrefix>  
                <scmTagController>true</scmTagController>  
                <!-- can be 'trunk' or 'branches' -->  
                <scmRootPath>trunk</scmRootPath>  
                <!-- scmBranchName must contain / before and after the branch name or just / if we are working with trunk -->  
                <scmBranchName>/</scmBranchName>  
                <urlBase>http://dev-no-01.pd.tracetracker.com/nightly/${scmRootPath}${scmBranchName}</urlBase>  
                <siteDeployBase>file:///home/cruise15/site/nightly/${scmRootPath}${scmBranchName}</siteDeployBase>  
                <scmConnectionBase>scm:svn:http://${user.name}@${pd.scm}/${scmRootPath}${scmBranchName}</scmConnectionBase>  
                <scmUrlBase>http://${pd.scm}/${scmRootPath}${scmBranchName}</scmUrlBase>  
                <release.build.machine>dev-no-02.pd.tracetracker.com</release.build.machine>
        </properties>
</project>

Re: "Web pages" and "Source Packages" disappears when adding a parent pom

by viggo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I have created an issue for this problem: http://jira.codehaus.org/browse/MEVENIDE-646

viggo wrote:
I have a project generated with the following command:
mvn archetype:create -DarchetypeGroupId=org.jboss.portletbridge.archetypes -DarchetypeArtifactId=richfaces-basic -DarchetypeVersion=1.0.0.B2 -DgroupId=com.tracetracker.dashboard -DartifactId=NameOfPortlet -DremoteRepositories=http://repository.jboss.org/maven2/
It creates a richfaces portlet project, and when I open it in Netbeans 6.1 (with Maven 3.1.3 plugin) both the Web pages and Source packages (and all others) are showing in the Projects window. But when I add a reference to an existing pom.xml that contains common information about several of our projects, suddenly both the Web pages and the Source Packages are gone in the Projects window. If I remove the dependency to the parent pom, they come back.
I will add both the pom of the project, and the parent pom if it can help fixing this problem.
project pom:
<?xml version="1.0" encoding="UTF-8"?>
<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">
        <parent>
                <groupId>com.tracetracker</groupId>  
                <artifactId>tt-main</artifactId>  
                <version>4.1.0-SNAPSHOT</version>  
                <relativePath>../tt-main/pom.xml</relativePath>
        </parent>              
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.tracetracker.dashboard</groupId>
    <artifactId>portlet-reports-java</artifactId>
    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>GTNet reports portlet</name>
    <url>http://www.tracetracker.com</url>
    <prerequisites>
        <maven>2.0.6</maven>
    </prerequisites>
    <licenses>
        <license>
            <name></name>
            <url></url>
        </license>
    </licenses>
    <scm>
        <connection></connection>
        <developerConnection></developerConnection>
        <url></url>
    </scm>
    <issueManagement>
        <system></system>
        <url></url>
    </issueManagement>
    <developers>
        <developer>
            <id></id>
            <name></name>
           
            <timezone></timezone>
        </developer>
    </developers>
    <build>
        <defaultGoal>install</defaultGoal>
        <finalName>ReportsPortlet</finalName>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <!--version>2.0.2</version-->
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <wtpversion>1.5</wtpversion>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-idea-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <dependenciesAsLibraries>true</dependenciesAsLibraries>
                    <useFullNames>false</useFullNames>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <repositories>
        <repository>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
                <updatePolicy>never</updatePolicy>
            </snapshots>
            <id>repository.jboss.com</id>
            <name>Jboss Repository for Maven</name>
            <url>http://repository.jboss.com/maven2/</url>
            <layout>default</layout>
        </repository>
        <repository>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
            <id>snapshots.jboss.org</id>
            <name>JBoss Snapshot Repository</name>
            <url>http://snapshots.jboss.org/maven2</url>
        </repository>
    </repositories>
    <dependencies>
        <dependency>
            <groupId>jboss</groupId>
            <artifactId>jboss-j2ee</artifactId>
            <version>4.2.2.GA</version>
            <scope>provided</scope>
        </dependency>      
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.faces</groupId>
            <artifactId>jsf-api</artifactId>
            <version>1.2_04-p02</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.faces</groupId>
            <artifactId>jsf-impl</artifactId>
            <version>1.2_04-p02</version>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <groupId>commons-collections</groupId>
                    <artifactId>commons-collections</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>javax.portlet</groupId>
            <artifactId>portlet-api</artifactId>
            <version>1.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.portletbridge</groupId>
            <artifactId>portletbridge-api</artifactId>
            <version>${portletbridge.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-impl</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.jboss.portletbridge</groupId>
            <artifactId>portletbridge-impl</artifactId>
            <version>${portletbridge.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-impl</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.richfaces.ui</groupId>
            <artifactId>richfaces-ui</artifactId>
            <version>${richfaces.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-api</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>javax.faces</groupId>
                    <artifactId>jsf-impl</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.sun.facelets</groupId>
            <artifactId>jsf-facelets</artifactId>
            <version>1.1.14</version>
        </dependency>
    </dependencies>
    <properties>
        <richfaces.version>3.2.0.GA</richfaces.version>
        <portletbridge.version>1.0.0.B2</portletbridge.version>
    </properties>
</project>

parent pom:
<?xml version="1.0" encoding="UTF-8"?>

<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">  
        <parent>
                <groupId>com.tracetracker</groupId>  
                <artifactId>root</artifactId>  
                <version>1.0.5</version>  
                <!--version>1.0.1</version-->  
                <relativePath>../pom.xml</relativePath>
        </parent>  
        <modelVersion>4.0.0</modelVersion>  
        <groupId>com.tracetracker</groupId>  
        <artifactId>tt-main</artifactId>  
        <name>TraceTracker Main Module</name>  
        <description>Parent POM for all TraceTracker code</description>  
        <packaging>pom</packaging>  
        <version>4.1.0-SNAPSHOT</version>  
        <repositories>
                <repository>
                        <id>marplerepo2</id>  
                        <url>http://mavenrepo.pd.tracetracker.com:9998/repo</url>
                </repository>
        </repositories>  
        <!-- START: The following elements must be present in all sub poms -->  
        <url>${urlBase}tt-main</url>  
        <distributionManagement>
                <site>
                        <id>site</id>  
                        <url>${siteDeployBase}tt-main</url>
                </site>
        </distributionManagement>  
        <scm>
                <connection>${scmConnectionBase}tt-main</connection>  
                <url>${scmUrlBase}tt-main</url>
        </scm>  
        <!-- STOP: -->  
        <!-- Developers list <-->  
        <developers>
                <developer>
                        <name>XXX</name>  
                        <id>XXX</id>  
                        XXX@... 
                        <roles>
                                <role>LEAD</role>
                        </roles>
                </developer>  
        </developers>  
        <!-- The dependencyManagement section is not inherited by submodules -->  
        <!-- It only defines the version, scope and type so that submodules only  -->  
        <!-- need groupId and artifactId when they include dependencies -->  
        <dependencyManagement>
                <dependencies>
                        <!-- THIS SECTION SHOULD NOT CONTAIN TRACETRACKER DEPENDENCIES -->  
                        <dependency>
                                <groupId>commons-cli</groupId>  
                                <artifactId>commons-cli</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-lang</groupId>  
                                <artifactId>commons-lang</artifactId>  
                                <version>2.3</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-httpclient</groupId>  
                                <artifactId>commons-httpclient</artifactId>  
                                <version>3.0.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-digester</groupId>  
                                <artifactId>commons-digester</artifactId>  
                                <version>1.7</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-beanutils</groupId>  
                                <artifactId>commons-beanutils</artifactId>  
                                <version>1.7.0</version>
                        </dependency>  
                        <!-- JWSDP -->  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>jax-qname</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>namespace</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml.bind</groupId>  
                                <artifactId>jsr173_api</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>xsdlib</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>relaxngDatatype</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>jwsdp</groupId>  
                                <artifactId>jax-qname</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <!-- JAXB 2.0 -->  
                        <dependency>
                                <groupId>com.sun.xml.bind</groupId>  
                                <artifactId>jaxb-xjc</artifactId>  
                                <version>2.0.5</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.sun.xml.bind</groupId>  
                                <artifactId>jaxb-impl</artifactId>  
                                <version>2.0.5</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml.bind</groupId>  
                                <artifactId>jaxb-api</artifactId>  
                                <version>2.0</version>
                        </dependency>  
                        <!-- SPRING -->  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-hibernate3</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-web</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-context</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-aop</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-support</artifactId>  
                                <version>2.0.6</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>javax.mail</groupId>  
                                                <artifactId>mail</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>javax.activation</groupId>  
                                                <artifactId>activation</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>javax.resource</groupId>  
                                                <artifactId>connector</artifactId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-remoting</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-beans</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-mock</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-jdbc</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-dao</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-core</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-jmx</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-webmvc</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.springframework</groupId>  
                                <artifactId>spring-jms</artifactId>  
                                <version>2.0.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>aopalliance</groupId>  
                                <artifactId>aopalliance</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <!-- VELOCITY -->  
                        <dependency>
                                <groupId>velocity</groupId>  
                                <artifactId>velocity</artifactId>  
                                <version>1.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>velocity-tools</groupId>  
                                <artifactId>velocity-tools</artifactId>  
                                <version>1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>velocity-tools</groupId>  
                                <artifactId>velocity-tools-extra</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <!-- HIBERNATE -->  
                        <dependency>
                                <groupId>org.hibernate</groupId>  
                                <artifactId>hibernate</artifactId>  
                                <version>3.2.5.ga</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>ehcache</groupId>  
                                                <artifactId>ehcache</artifactId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <!-- OPENSYMPHONY -->  
                        <dependency>
                                <groupId>opensymphony</groupId>  
                                <artifactId>xwork</artifactId>  
                                <version>1.1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>opensymphony</groupId>  
                                <artifactId>webwork</artifactId>  
                                <version>2.2.1</version>
                        </dependency>  
                        <!-- SOURCEFORGE -->  
                        <dependency>
                                <groupId>net.sf.ehcache</groupId>  
                                <artifactId>ehcache</artifactId>  
                                <version>1.3.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>joda-time</groupId>  
                                <artifactId>joda-time</artifactId>  
                                <version>1.3</version>
                        </dependency>  
                        <dependency>
                                <groupId>net.sourceforge.jexcelapi</groupId>  
                                <artifactId>jxl</artifactId>  
                                <version>2.6</version>
                        </dependency>  
                        <!-- CODEHAUS -->  
                        <dependency>
                                <groupId>xstream</groupId>  
                                <artifactId>xstream</artifactId>  
                                <version>230206</version>
                        </dependency>  
                        <!-- OTHERS -->  
                        <dependency>
                                <groupId>jasperreports</groupId>  
                                <artifactId>jasperreports</artifactId>  
                                <version>2.0.5</version>
                        </dependency>  
                        <dependency>
                                <groupId>dom4j</groupId>  
                                <artifactId>dom4j</artifactId>  
                                <version>1.6.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>cglib</groupId>  
                                <artifactId>cglib-nodep</artifactId>  
                                <version>2.1_3</version>
                        </dependency>  
                        <dependency>
                                <groupId>hessian</groupId>  
                                <artifactId>hessian</artifactId>  
                                <version>3.0.13</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.acegisecurity</groupId>  
                                <artifactId>acegi-security</artifactId>  
                                <version>1.0.4</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring-remoting</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring-support</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring-jdbc</artifactId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <dependency>
                                <groupId>org.codehaus.xfire</groupId>  
                                <artifactId>xfire-all</artifactId>  
                                <version>1.2.2</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>javax.xml</groupId>  
                                                <artifactId>jaxb-api</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>jaxb</groupId>  
                                                <artifactId>jaxb-api</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>com.sun.xml.bind</groupId>  
                                                <artifactId>jaxb-impl</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>jaxb</groupId>  
                                                <artifactId>jaxb-impl</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>com.sun.xml.bind</groupId>  
                                                <artifactId>jaxb-xjc</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring</artifactId>
                                        </exclusion>  
                                        <exclusion>
                                                <groupId>woodstox</groupId>  
                                                <artifactId>wstx-asl</artifactId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <dependency>
                                <groupId>axis</groupId>  
                                <artifactId>axis</artifactId>  
                                <version>1.2.1TT</version>
                        </dependency>  
                        <dependency>
                                <groupId>jaf</groupId>  
                                <artifactId>activation</artifactId>  
                                <version>1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml</groupId>  
                                <artifactId>jaxrpc-api</artifactId>  
                                <version>1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>javamail</groupId>  
                                <artifactId>mailapi</artifactId>  
                                <version>1.3.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.mail</groupId>  
                                <artifactId>mail</artifactId>  
                                <version>1.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml</groupId>  
                                <artifactId>saaj</artifactId>  
                                <version>1.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>wsdl4j</groupId>  
                                <artifactId>wsdl4j</artifactId>  
                                <version>1.5.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.apache.ws.commons</groupId>  
                                <artifactId>XmlSchema</artifactId>  
                                <version>1.0.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.htmlparser</groupId>  
                                <artifactId>filterbuilder</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.htmlparser</groupId>  
                                <artifactId>htmllexer</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.htmlparser</groupId>  
                                <artifactId>htmlparser</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.htmlparser</groupId>  
                                <artifactId>thumbelina</artifactId>  
                                <version>1.6</version>
                        </dependency>  
                        <!-- ## RUNTIME ## -->  
                        <!-- Not neccessary to compile, only needed runtime -->  
                        <dependency>
                                <groupId>jaxen</groupId>  
                                <artifactId>jaxen</artifactId>  
                                <version>1.1</version>  
                                <exclusions>
                                        <exclusion>
                                                <artifactId>xalan</artifactId>  
                                                <groupId>xalan</groupId>
                                        </exclusion>
                                </exclusions>
                        </dependency>  
                        <dependency>
                                <groupId>xerces</groupId>  
                                <artifactId>xercesImpl</artifactId>  
                                <version>2.9.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>postgresql</groupId>  
                                <artifactId>postgresql</artifactId>  
                                <version>8.3-603.jdbc3</version>
                        </dependency>  
                        <dependency>
                                <groupId>mysql</groupId>  
                                <artifactId>mysql-connector-java</artifactId>  
                                <version>5.0.5</version>
                        </dependency>  
                        <dependency>
                                <groupId>ant-contrib</groupId>  
                                <artifactId>ant-contrib</artifactId>  
                                <version>1.0b2</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-fileupload</groupId>  
                                <artifactId>commons-fileupload</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-collections</groupId>  
                                <artifactId>commons-collections</artifactId>  
                                <version>2.1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-codec</groupId>  
                                <artifactId>commons-codec</artifactId>  
                                <version>1.3</version>
                        </dependency>  
                        <dependency>
                                <groupId>opensymphony</groupId>  
                                <artifactId>oscore</artifactId>  
                                <version>2.2.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>ognl</groupId>  
                                <artifactId>ognl</artifactId>  
                                <version>2.6.7</version>
                        </dependency>  
                        <dependency>
                                <groupId>oro</groupId>  
                                <artifactId>oro</artifactId>  
                                <version>2.0.8</version>
                        </dependency>  
                        <dependency>
                                <groupId>xpp3</groupId>  
                                <artifactId>xpp3</artifactId>  
                                <version>1.1.3.4d_b4_min</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.rifers</groupId>  
                                <artifactId>rife-continuations</artifactId>  
                                <version>0.0.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>antlr</groupId>  
                                <artifactId>antlr</artifactId>  
                                <version>2.7.7</version>
                        </dependency>  
                        <dependency>
                                <groupId>commons-discovery</groupId>  
                                <artifactId>commons-discovery</artifactId>  
                                <version>0.2</version>
                        </dependency>  
                        <dependency>
                                <groupId>org.apache.poi</groupId>  
                                <artifactId>poi</artifactId>  
                                <version>3.0.2-FINAL</version>
                        </dependency>  
                        <dependency>
                                <groupId>stax</groupId>  
                                <artifactId>stax-api</artifactId>  
                                <version>1.0.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>woodstox</groupId>  
                                <artifactId>wstx-asl</artifactId>  
                                <version>2.9.3</version>
                        </dependency>  
                        <dependency>
                                <groupId>woodstox</groupId>  
                                <artifactId>wstx-api</artifactId>  
                                <version>2.9</version>
                        </dependency>  
                        <dependency>
                                <groupId>jfree</groupId>  
                                <artifactId>jcommon</artifactId>  
                                <version>1.0.8</version>
                        </dependency>  
                        <dependency>
                                <groupId>jfree</groupId>  
                                <artifactId>jfreechart</artifactId>  
                                <version>1.0.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>jdom</groupId>  
                                <artifactId>jdom</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.lowagie</groupId>  
                                <artifactId>itext</artifactId>  
                                <version>1.3.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.lowagie</groupId>  
                                <artifactId>itextasian</artifactId>  
                                <version>1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.svnkit</groupId>  
                                <artifactId>svnkit</artifactId>  
                                <version>1.1.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>com.svnkit</groupId>  
                                <artifactId>svnkit-cli</artifactId>  
                                <version>1.1.0</version>
                        </dependency>  
                        <!-- ## PROVIDED SCOPE ## -->  
                        <!-- Needed to compile, but should not be bundled since they are provided by server -->  
                        <dependency>
                                <groupId>commons-logging</groupId>  
                                <artifactId>commons-logging</artifactId>  
                                <version>1.0.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>log4j</groupId>  
                                <artifactId>log4j</artifactId>  
                                <version>1.2.13</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.servlet</groupId>  
                                <artifactId>servlet-api</artifactId>  
                                <version>2.4</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.jms</groupId>  
                                <artifactId>jms</artifactId>  
                                <version>1.1</version>
                        </dependency>  
                        <dependency>
                                <groupId>jboss</groupId>  
                                <artifactId>jboss-j2ee</artifactId>  
                                <version>4.2.2.GA</version>
                        </dependency>  
                        <dependency>
                                <groupId>javax.xml</groupId>  
                                <artifactId>jaxrpc-api</artifactId>  
                                <version>1.1</version>
                        </dependency>
                        <dependency>
                                <groupId>org.codehaus.enunciate</groupId>  
                                <artifactId>enunciate-top</artifactId>  
                                <version>1.5</version>  
                                <exclusions>
                                        <exclusion>
                                                <groupId>org.springframework</groupId>  
                                                <artifactId>spring</artifactId>
                                        </exclusion>  
                                        <!--exclusion>
                                                <groupId>org.codehaus.xfire</groupId>  
                                                <artifactId>xfire-all</artifactId>
                                        </exclusion-->
                                </exclusions>
                        </dependency>  
                        <!-- ## TEST ## -->  
                        <dependency>
                                <groupId>xmlbeans</groupId>  
                                <artifactId>xmlpublic</artifactId>  
                                <version>2.2.0</version>
                        </dependency>  
                        <dependency>
                                <groupId>xmlbeans</groupId>  
                                <artifactId>xbean</artifactId>  
                                <version>2.2.0</version>
                        </dependency>
                </dependencies>
        </dependencyManagement>  
        <!-- Dependencies inherrited by submodules -->  
        <!-- Common build settings -->  
        <build>
                <sourceDirectory>src/java</sourceDirectory>  
                <testSourceDirectory>test/java</testSourceDirectory>  
                <defaultGoal>install</defaultGoal>  
                <pluginManagement>
                        <plugins>
                                <!-- INTERNAL -->  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>dashboard</artifactId>  
                                        <version>1.3.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>jaxb</artifactId>  
                                        <version>2.0.5</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>projectset</artifactId>  
                                        <version>1.0.6</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>spring</artifactId>  
                                        <version>1.3.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttaxis</artifactId>  
                                        <version>1.0.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttclient</artifactId>  
                                        <version>1.2.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttcommon</artifactId>  
                                        <version>1.5.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttear</artifactId>  
                                        <version>1.3.4</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttapplet</artifactId>  
                                        <version>1.0.4</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttgqi</artifactId>  
                                        <version>1.4.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttinstaller</artifactId>  
                                        <version>1.3.5</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttsdocbook</artifactId>  
                                        <version>1.1.4</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttwar</artifactId>  
                                        <version>1.1.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttxfire</artifactId>  
                                        <version>1.3.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>velocity</artifactId>  
                                        <version>1.1.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>autorelease</artifactId>  
                                        <version>1.3.9-SNAPSHOT</version>
                                </plugin>  
                                <!--plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttjira</artifactId>  
                                        <version>1.0.5</version>
                                </plugin-->  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>nonjavatask</artifactId>  
                                        <version>1.2.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttnightly</artifactId>  
                                        <version>3.1.1</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>tthastings</artifactId>  
                                        <version>3.0.3</version>  
                                        <configuration>
                                                <mitBasedir>${tracetracker.multi-instance.baseDir}</mitBasedir>  
                                                <gtnMitBasedir>${tracetracker.gtn.multi-instance.baseDir}</gtnMitBasedir>  
                                                <tixMitBasedir>${tracetracker.tix.multi-instance.baseDir}</tixMitBasedir>  
                                                <tixViMitBasedir>${tracetracker.tix-vi.multi-instance.baseDir}</tixViMitBasedir>  
                                                <myMitBaseDir>${tracetracker.tix.multi-instance.baseDir}</myMitBaseDir>  
                                                <viMode>true</viMode>  
                                                <appServerConfigDir>${maven.jboss.conf.dir}</appServerConfigDir>  
                                                <appServerDeployDir>${maven.jboss.deploy.dir}</appServerDeployDir>  
                                                <roleMapTemplate>role-map.vm</roleMapTemplate>  
                                                <gnsFragmentTemplate>gns-override-fragment.vm</gnsFragmentTemplate>  
                                                <jbossDeployDir>${tt.deploy.dir}</jbossDeployDir>  
                                                <jbossConfDir>${tt.conf.dir}</jbossConfDir>  
                                                <jbossLibDir>${tt.lib.dir}</jbossLibDir>  
                                                <jbossHomeDir>${tt.user.jboss.home}</jbossHomeDir>  
                                                <jbossPortalHomeDir>${tt.user.jboss.portal.home}</jbossPortalHomeDir>  
                                                <jbossPortalHomeDir>${tt.user.jboss.portal.home}</jbossPortalHomeDir>  
                                                <jbossTmpDeployDir>${tt.tmp.deploy.dir}</jbossTmpDeployDir>  
                                                <tracetrackerBuildSelfcontained>${tracetrackerBuildSelfcontained}</tracetrackerBuildSelfcontained>  
                                                <virtualHosts>web,import,remoting</virtualHosts>  
                                                <propertyRoots>tracetracker</propertyRoots>  
                                                <transformAliasWithPrefix>${maven.hastings.jartool.transform.aliasWithPrefix}</transformAliasWithPrefix>  
                                                <transformFileNamePattern>${maven.hastings.jartool.transform.pattern}</transformFileNamePattern>  
                                                <dataSourceTemplateLocation>../tt-main/src/resources/</dataSourceTemplateLocation>  
                                                <dependenciesProjects>
                                                        <dependenciesProject>tix-main</dependenciesProject>  
                                                        <dependenciesProject>gtn-main</dependenciesProject>
                                                </dependenciesProjects>  
                                                <commonConfigurations>
                                                        <customConfiguration>
                                                                <name>security-config.xml</name>  
                                                                <merge>false</merge>
                                                        </customConfiguration>
                                                </commonConfigurations>  
                                                <commonMitConfigurations>
                                                        <customConfiguration>
                                                                <name>role-map.xml</name>  
                                                                <merge>false</merge>
                                                        </customConfiguration>
                                                </commonMitConfigurations>  
                                                <supportedDbProviders>
                                                        <supportedDbProvider>postgresql</supportedDbProvider>  
                                                        <supportedDbProvider>mysql-connector-java</supportedDbProvider>
                                                </supportedDbProviders>
                                        </configuration>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>ttmarlowe</artifactId>  
                                        <version>1.4.2</version>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>tti18n</artifactId>  
                                        <version>1.2.0</version>  
                                        <configuration>
                                                <includes>
                                                        <include>**/src/resources/**/*.properties</include>  
                                                        <include>**/src/main/resources/**/*.properties</include>  
                                                        <include>tt-report-plugins/**/*.properties</include>
                                                </includes>
                                        </configuration>
                                </plugin>  
                                <!-- EXTERNAL -->  
                                <plugin>
                                        <artifactId>maven-antrun-plugin</artifactId>  
                                        <version>1.1</version>  
                                        <dependencies>
                                                <dependency>
                                                        <groupId>com.jcraft</groupId>  
                                                        <artifactId>jsch</artifactId>  
                                                        <version>0.1.29</version>
                                                </dependency>  
                                                <dependency>
                                                        <groupId>ant</groupId>  
                                                        <artifactId>ant-jsch</artifactId>  
                                                        <version>1.6.5</version>
                                                </dependency>  
                                                <dependency>
                                                        <groupId>ant</groupId>  
                                                        <artifactId>ant-trax</artifactId>  
                                                        <version>1.6.5</version>
                                                </dependency>  
                                                <dependency>
                                                        <groupId>ant</groupId>  
                                                        <artifactId>optional</artifactId>  
                                                        <version>1.5.4</version>
                                                </dependency>  
                                                <dependency>
                                                        <!-- Needed for running native2ascii -->  
                                                        <groupId>com.sun</groupId>  
                                                        <artifactId>tools</artifactId>  
                                                        <version>1.5.0.12</version>
                                                </dependency>
                                        </dependencies>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-antlr-plugin</artifactId>  
                                        <version>2.0-beta-1</version>
                                </plugin>  
                                <plugin>
                                        <groupId>org.codehaus.mojo</groupId>  
                                        <artifactId>cobertura-maven-plugin</artifactId>  
                                        <version>2.2</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-surefire-plugin</artifactId>  
                                        <version>2.4.3</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-assembly-plugin</artifactId>  
                                        <version>2.1</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-deploy-plugin</artifactId>  
                                        <version>2.3</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-ear-plugin</artifactId>  
                                        <version>2.3</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-ejb-plugin</artifactId>  
                                        <version>2.0</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-war-plugin</artifactId>  
                                        <version>2.0.2</version>
                                </plugin>  
                                <plugin>
                                        <artifactId>maven-eclipse-plugin</artifactId>  
                                        <version>2.3</version>
                                </plugin>  
                                <plugin>
                                        <groupId>org.codehaus.enunciate</groupId>  
                                        <artifactId>maven-enunciate-plugin</artifactId>  
                                        <version>1.5</version>  
                                        <extensions>true</extensions>
                                </plugin>  
                                <plugin>
                                        <groupId>com.tracetracker.plugins</groupId>  
                                        <artifactId>maven-source-plugin</artifactId>  
                                        <version>2.0.4</version>
                                </plugin>
                        </plugins>
                </pluginManagement>  
                <plugins>
                        <!-- PLUGIN CONFIGURATION ONLY -->  
                        <plugin>
                                <artifactId>maven-compiler-plugin</artifactId>  
                                <configuration>
                                        <verbose>false</verbose>  
                                        <source>1.5</source>  
                                        <target>1.5</target>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-eclipse-plugin</artifactId>  
                                <configuration>
                                        <buildOutputDirectory>${basedir}/bin</buildOutputDirectory>  
                                        <additionalBuildcommands>
                                                <buildcommand>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</buildcommand>
                                        </additionalBuildcommands>  
                                        <additionalProjectnatures>
                                                <projectnature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</projectnature>
                                        </additionalProjectnatures>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-surefire-plugin</artifactId>  
                                <configuration>
                                        <includes>
                                                <include>**/*Test.java</include>
                                        </includes>  
                                        <systemProperties>
                                                <property>
                                                        <name>maven.junit.sysproperties</name>  
                                                        <value>log4j.configuration java.awt.headless</value>
                                                </property>  
                                                <property>
                                                        <name>log4j.configuration</name>  
                                                        <value>log4j.xml</value>
                                                </property>  
                                                <property>
                                                        <name>java.awt.headless</name>  
                                                        <value>true</value>
                                                </property>
                                        </systemProperties>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-ejb-plugin</artifactId>  
                                <configuration>
                                        <archive>
                                                <manifestFile>${project.build.directory}/MANIFEST.MF</manifestFile>  
                                                <manifest>
                                                        <addClasspath>false</addClasspath>
                                                </manifest>
                                        </archive>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-war-plugin</artifactId>  
                                <configuration>
                                        <warSourceDirectory>${project.basedir}/src/webapp</warSourceDirectory>  
                                        <excludes>**/MANIFEST.MF</excludes>  
                                        <archive>
                                                <manifestFile>${project.build.directory}/MANIFEST.MF</manifestFile>  
                                                <manifest>
                                                        <addClasspath>false</addClasspath>
                                                </manifest>
                                        </archive>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>tthastings</artifactId>  
                                <configuration>
                                        <sharedLibPoms>
                                                <com.tracetracker.plugins.util.MojoArtifact>
                                                        <groupId>com.tracetracker</groupId>  
                                                        <artifactId>tix-j2ee</artifactId>
                                                </com.tracetracker.plugins.util.MojoArtifact>  
                                                <com.tracetracker.plugins.util.MojoArtifact>
                                                        <groupId>com.tracetracker</groupId>  
                                                        <artifactId>gtn-j2ee</artifactId>
                                                </com.tracetracker.plugins.util.MojoArtifact>
                                        </sharedLibPoms>
                                </configuration>
                        </plugin>  
                        <!-- PLUGIN EXECUTIONS -->  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>ttcommon</artifactId>  
                                <configuration>
                                        <validateParent>false</validateParent>  
                                        <verbose>false</verbose>
                                </configuration>  
                                <executions>
                                        <execution>
                                                <id>tt-main-validate</id>  
                                                <phase>validate</phase>  
                                                <goals>
                                                        <goal>info</goal>
                                                </goals>
                                        </execution>  
                                        <execution>
                                                <id>tt-main-initialize</id>  
                                                <phase>initialize</phase>  
                                                <goals>
                                                        <goal>project-validate</goal>
                                                </goals>
                                        </execution>  
                                        <execution>
                                                <id>tt-main-generate-resources</id>  
                                                <phase>generate-resources</phase>  
                                                <goals>
                                                        <goal>manifest-generate</goal>
                                                </goals>
                                        </execution>  
                                        <execution>
                                                <id>tt-main-test-prepare</id>  
                                                <phase>process-test-resources</phase>  
                                                <goals>
                                                        <goal>test-prepare</goal>
                                                </goals>
                                        </execution>
                                </executions>
                        </plugin>  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>ttwar</artifactId>  
                                <executions>
                                        <execution>
                                                <goals>
                                                        <goal>war-cleanup</goal>
                                                </goals>  
                                                <configuration>
                                                        <verbose>false</verbose>  
                                                        <archive>
                                                                <manifestFile>${project.build.directory}/MANIFEST.MF</manifestFile>  
                                                                <manifest>
                                                                        <addClasspath>false</addClasspath>
                                                                </manifest>
                                                        </archive>
                                                </configuration>
                                        </execution>
                                </executions>
                        </plugin>  
                        <plugin>
                                <groupId>org.codehaus.mojo</groupId>  
                                <artifactId>cobertura-maven-plugin</artifactId>  
                                <executions>
                                        <execution>
                                                <phase>site</phase>  
                                                <goals>
                                                        <goal>clean</goal>
                                                </goals>
                                        </execution>
                                </executions>
                        </plugin>  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>maven-source-plugin</artifactId>  
                                <executions>
                                        <execution>
                                                <phase>package</phase>  
                                                <goals>
                                                        <goal>ttjar</goal>
                                                </goals>
                                        </execution>
                                </executions>
                        </plugin>
                </plugins>  
                <resources>
                        <resource>
                                <directory>src/resources</directory>
                        </resource>
                </resources>  
                <testResources>
                        <testResource>
                                <directory>test/resources</directory>
                        </testResource>
                </testResources>
        </build>  
        <!-- Site reports -->  
        <reporting>
                <plugins>
                        <plugin>
                                <artifactId>maven-project-info-reports-plugin</artifactId>  
                                <version>2.0.1</version>  
                                <reportSets>
                                        <reportSet>
                                                <reports>
                                                        <report>index</report>  
                                                        <report>summary</report>  
                                                        <report>dependencies</report>  
                                                        <report>project-team</report>  
                                                        <report>cim</report>  
                                                        <report>issue-tracking</report>  
                                                        <report>scm</report>  
                                                        <report>dependency-convergence</report>
                                                </reports>
                                        </reportSet>
                                </reportSets>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-javadoc-plugin</artifactId>  
                                <version>2.2</version>  
                                <configuration>
                                        <source>1.5</source>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-jxr-plugin</artifactId>  
                                <version>2.0</version>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-surefire-report-plugin</artifactId>  
                                <version>2.3</version>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-checkstyle-plugin</artifactId>  
                                <configuration>
                                        <enableRulesSummary>false</enableRulesSummary>  
                                        <configLocation>http://${pd.scm}/trunk/tt-main/tt_checkstyle.xml</configLocation>  
                                        <excludes>**/client/http/example/*.java,**/gqi/example/gui/*.java,**/jaxb/**/*.java,**/HelloService*.java,**/wsdl/*.java,**/tracetracker/antlr/**/*.java</excludes>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <artifactId>maven-pmd-plugin</artifactId>  
                                <version>2.1</version>  
                                <configuration>
                                        <targetJdk>1.5</targetJdk>  
                                        <rulesets>
                                                <ruleset>${project.basedir}/../tt-main/pmd.xml</ruleset>
                                        </rulesets>  
                                        <excludes>
                                                <exclude>**/jaxb/**/*.java</exclude>  
                                                <exclude>**/wsdl/*.java</exclude>
                                        </excludes>
                                </configuration>
                        </plugin>  
                        <plugin>
                                <groupId>org.codehaus.mojo</groupId>  
                                <artifactId>cobertura-maven-plugin</artifactId>  
                                <version>2.2</version>  
                                <configuration>
                                        <formats>
                                                <format>html</format>  
                                                <format>xml</format>
                                        </formats>
                                </configuration>
                        </plugin>  
                        <!--plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>ttjira</artifactId>  
                                <inherited>false</inherited>  
                                <configuration>
                                        <ids>
                                                <id>project-10020</id>  
                                                <id>project-10051</id>  
                                                <id>project-10010</id>  
                                                <id>project-10040</id>  
                                                <id>project-10011</id>  
                                                <id>project-10041</id-->  
                        <!--id>project-10050</id-->  
                        <!--id>project-10030</id>
                                        </ids>  
                                        <excludes>
                                                <exclude>Fix For Versions (non-archived)</exclude>  
                                                <exclude>Fix For Versions (all)</exclude>  
                                                <exclude>Raised In Versions (non-archived)</exclude>  
                                                <exclude>Raised In Versions (all)</exclude>
                                        </excludes>
                                </configuration>
                        </plugin-->  
                        <plugin>
                                <groupId>com.tracetracker.plugins</groupId>  
                                <artifactId>nonjavatask</artifactId>  
                                <configuration>
                                        <tasks>
                                                <task>TODO</task>
                                        </tasks>  
                                        <excludes>
                                                <exclude>eclipse_code_templates.xml</exclude>  
                                                <exclude>tt_checkstyle.xml</exclude>
                                        </excludes>
                                </configuration>
                        </plugin>
                </plugins>
        </reporting>  
        <!-- Profiles -->  
        <profiles>
                <profile>
                        <id>nightly-deploy-snapshots</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <groupId>com.tracetracker.plugins</groupId>  
                                                <artifactId>ttnightly</artifactId>  
                                                <executions>
                                                        <execution>
                                                                <phase>install</phase>  
                                                                <inherited>true</inherited>  
                                                                <goals>
                                                                        <goal>deploy-snapshot</goal>
                                                                </goals>
                                                        </execution>
                                                </executions>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <id>slurp</id>  
                        <modules>
                                <module>../app-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>gtn-bin</id>  
                        <modules>
                                <module>../gtn-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>tix-bin</id>  
                        <modules>
                                <module>../tix-main</module>  
                                <module>../tix-vi-main</module>
                        </modules>
                </profile>  
                <profile>
                        <!-- This profile will compile tests but don't execute -->  
                        <id>testskip</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <skip>true</skip>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <!-- This profile will neither compile nor execute tests -->  
                        <id>testexclude</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-compiler-plugin</artifactId>  
                                                <configuration>
                                                        <skip>true</skip>  
                                                        <!-- Skipping test compilation -->
                                                </configuration>
                                        </plugin>  
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <skip>true</skip>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <!-- This profile will run Test and TestHeavy tests -->  
                        <id>testheavy</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <includes>
                                                                <include>**/*Test.java</include>  
                                                                <include>**/*TestHeavy.java</include>
                                                        </includes>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <!-- This profile will run TestIntegration tests -->  
                        <id>testintegration</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <includes>
                                                                <include>**/*TestIntegration.java</include>
                                                        </includes>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <!-- This profile will run ALL tests -->  
                        <id>testall</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <artifactId>maven-surefire-plugin</artifactId>  
                                                <configuration>
                                                        <includes>
                                                                <include>**/*Test.java</include>  
                                                                <include>**/*TestHeavy.java</include>  
                                                                <include>**/*TestIntegration.java</include>
                                                        </includes>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>  
                <profile>
                        <id>arch</id>  
                        <modules>
                                <module>../arch-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>tools</id>  
                        <modules>
                                <module>../tools-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>app</id>  
                        <modules>
                                <module>../app-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>appext</id>  
                        <modules>
                                <!--module>../app-blue-java</module-->  
                                <module>../app-cleopatra-java</module>  
                                <module>../app-gepirclient-java</module>  
                                <module>../app-iang-java</module>  
                                <module>../app-njord-java</module>  
                                <module>../app-slurp-web</module>  
                                <module>../app-tracker-java</module>  
                                <module>../app-trackerdog-java</module>
                        </modules>
                </profile>  
                <profile>
                        <id>portlet</id>  
                        <modules>
                                <module>../portlet-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>gtn</id>  
                        <modules>
                                <module>../gtn-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>tix</id>  
                        <modules>
                                <module>../tix-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>galaxy</id>  
                        <modules>
                                <module>../galaxy-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>tix-vi</id>  
                        <modules>
                                <module>../tix-vi-main</module>
                        </modules>
                </profile>  
                <profile>
                        <id>all</id>  
                        <modules>
                                <module>../app-blue-java</module>  
                                <module>../app-cleopatra-java</module>  
                                <module>../app-gepirclient-java</module>  
                                <module>../app-iang-java</module>  
                                <module>../app-jabberclient-java</module>  
                                <module>../app-main</module>  
                                <module>../app-njord-java</module>  
                                <module>../app-slurp-web</module>  
                                <module>../app-tracker-java</module>  
                                <module>../app-trackerdog-java</module>  
                                <module>../arch-main</module>  
                                <module>../galaxy-main</module>  
                                <module>../gtn-main</module>  
                                <module>../int-sap-adapter-java</module>  
                                <module>../json-rpc-client</module>  
                                <module>../lib-jboss-java</module>  
                                <module>../lib-epcis-java</module>  
                                <module>../portlet-main</module>  
                                <module>../tix-main</module>  
                                <module>../tix-vi-main</module>  
                                <module>../tools-doclet-java</module>  
                                <module>../tools-main</module>  
                                <module>../tt-test-java</module>  
                                <module>../tt-report-plugins</module>
                        </modules>
                </profile>  
                <profile>
                        <!-- This profile will create a JBoss instance with JBoss Portal support -->  
                        <id>portal</id>  
                        <build>
                                <plugins>
                                        <!--plugin>
                                                <groupId>com.tracetracker.plugins</groupId>  
                                                <artifactId>ttmarlowe</artifactId>  
                                                <inherited>false</inherited>  
                                                <configuration>
                                                        <goal>db</goal>  
                                                        <type>portal</type>  
                                                        <myMitBaseDir>${tracetracker.tix.multi-instance.baseDir}</myMitBaseDir>  
                                                        <subgoals>
                                                                <subgoal>recreate-db</subgoal>
                                                        </subgoals>
                                                </configuration>
                                        </plugin-->  
                                        <plugin>
                                                <groupId>com.tracetracker.plugins</groupId>  
                                                <artifactId>tthastings</artifactId>  
                                                <configuration>
                                                        <goal>jboss</goal>  
                                                        <jbossPortalSupport>true</jbossPortalSupport>  
                                                        <myMitBaseDir>${tracetracker.tix.multi-instance.baseDir}</myMitBaseDir>  
                                                        <dataSourceTemplateLocation>${basedir}/../portlet-main/src/install/resources</dataSourceTemplateLocation>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>  
                        <properties>
                                <mavenJbossDefaultConfExcludes>${mavenJbossPortalConfExcludes}</mavenJbossDefaultConfExcludes>  
                                <mavenJbossDefaultDeployExcludes>${mavenJbossPortalDeployExcludes}</mavenJbossDefaultDeployExcludes>  
                                <mavenJbossDefaultLibExcludes>${mavenJbossPortalLibExcludes}</mavenJbossDefaultLibExcludes>  
                                <tracetracker.serverapp.name>jboss</tracetracker.serverapp.name>  
                                <tracetracker.instance.name>portal</tracetracker.instance.name>  
                                <tracetracker.database.name>${user.name}-portal</tracetracker.database.name>
                        </properties>
                </profile>  
                <profile>
                        <id>checki18n</id>  
                        <build>
                                <plugins>
                                        <plugin>
                                                <groupId>com.tracetracker.plugins</groupId>  
                                                <artifactId>tti18n</artifactId>  
                                                <inherited>false</inherited>  
                                                <executions>
                                                        <execution>
                                                                <id>getmissingtexts</id>  
                                                                <phase>process-resources</phase>  
                                                                <goals>
                                                                        <goal>getmissingresourcetexts</goal>
                                                                </goals>
                                                        </execution>
                                                </executions>  
                                                <configuration>
                                                        <locales>
                                                                <locale>en</locale>  
                                                                <locale>no</locale>  
                                                                <locale>de</locale>  
                                                                <locale>zh</locale>
                                                        </locales>  
                                                        <resouceBundleFolder>src/resources</resouceBundleFolder>
                                                </configuration>
                                        </plugin>
                                </plugins>
                        </build>
                </profile>
        </profiles>  
        <properties>
                <!-- Velocity merge properties -->  
                <sessionFacade>LocalSessionFacade</sessionFacade>  
                <viewType>local</viewType>  
                <mavenJbossDefaultConfExcludes>${mavenJbossPortalConfExcludes},props/**,xmdesc/AttributePersistenceService-xmbean.xml,standardjaws.xml,jboss-log4j.xml</mavenJbossDefaultConfExcludes>  
                <mavenJbossPortalConfExcludes/>  
                <mavenJbossDefaultDeployExcludes>${mavenJbossPortalDeployExcludes},jboss-bean.deployer/**,jboss-aop-jdk50.deployer/**,ejb3.deployer/**,ejb3-interceptors-aop.xml,mail-ra.rar,mail-service.xml,cache-invalidation-service.xml,client-deployer-service.xml,hsqldb-ds.xml,jms/**,http-invoker.sar/**,management/**,monitoring-service.xml,jboss-web.deployer/ROOT.war/**,properties-service.xml,scheduler-service.xml,schedule-manager-service.xml,quartz-ra.rar,uuid-key-generator.sar/**,bsh-deployer.xml,jbossws.sar/**,*-ha-*.rar</mavenJbossDefaultDeployExcludes>  
                <mavenJbossPortalDeployExcludes/>  
                <tracetrackerBuildSelfcontained>false</tracetrackerBuildSelfcontained>  
                <mavenJbossDefaultLibExcludes>${mavenJbossPortalLibExcludes},antlr.jar,bsh.jar,cglib.jar,dom4j.jar,hibernate*.jar,javassist.jar,scheduler-plugin.jar,autonumber-plugin.jar,bsh-deployer.jar,ejb3-persistence.jar,hsqldb.jar,hsqldb-plugin.jar,jaxen.jar,jboss-backport-concurrent.jar,jboss-cache-jdk50.jar,jboss-hibernate.jar,jboss-jaxws.jar,jboss-monitoring.jar,jbossmq.jar,joesnmp.jar,log4j-snmp-appender.jar,mail-plugin.jar,properties-plugin.jar,quartz.jar</mavenJbossDefaultLibExcludes>  
                <mavenJbossPortalLibExcludes/>  
                <sharedMavenJbossDefaultLibExcludes>${mavenJbossDefaultLibExcludes},activation.jar</sharedMavenJbossDefaultLibExcludes>  
                <j2eeVersion>${project.version}</j2eeVersion>  
                <tracetrackerServerCertKeyStoreFile>security/${user.name}.jks</tracetrackerServerCertKeyStoreFile>  
                <tracetrackerServerCertKeyStorePassword>${user.name}kspw</tracetrackerServerCertKeyStorePassword>  
                <!-- Default plugin properties -->  
                <tracetracker.multi-instance.baseDir>${basedir}/../tt-main/multi-instance</tracetracker.multi-instance.baseDir>  
                <tracetracker.gtn.multi-instance.baseDir>${basedir}/../gtn-main/multi-instance</tracetracker.gtn.multi-instance.baseDir>  
                <tracetracker.tix.multi-instance.baseDir>${basedir}/../tix-main/multi-instance</tracetracker.tix.multi-instance.baseDir>  
                <tracetracker.tix-vi.multi-instance.baseDir>${basedir}/../tix-vi-main/multi-instance</tracetracker.tix-vi.multi-instance.baseDir>  
                <!--tracetracker.jboss.dataSource.template>${basedir}/../tt-main/src/resources/${tracetracker.database.type}-ds.vm</tracetracker.jboss.dataSource.template-->  
                <maven.jboss.conf.dir>${basedir}/../tt-main/src/conf/jboss4/conf</maven.jboss.conf.dir>  
                <maven.jboss.deploy.dir>${basedir}/../tt-main/src/conf/jboss4/deploy</maven.jboss.deploy.dir>  
                <maven.jboss.conf.name>tracetracker</maven.jboss.conf.name>  
                <tt.deploy.dir>${basedir}/../tt-main/target/jboss/${maven.jboss.conf.name}/deploy</tt.deploy.dir>  
                <tt.conf.dir>${basedir}/../tt-main/target/jboss/${maven.jboss.conf.name}/conf</tt.conf.dir>  
                <tt.lib.dir>${basedir}/../tt-main/target/jboss/${maven.jboss.conf.name}/lib</tt.lib.dir>  
                <tt.tmp.deploy.dir>${basedir}/../tt-main/target/jboss/${maven.jboss.conf.name}/tmp/deploy</tt.tmp.deploy.dir>  
                <tracetracker.virtualhost.web>localhost</tracetracker.virtualhost.web>  
                <tracetracker.virtualhost.remoting>localhost</tracetracker.virtualhost.remoting>  
                <tracetracker.virtualhost.import>localhost</tracetracker.virtualhost.import>  
                <tracetracker.role-mapping.use-mapped-roles-only>false</tracetracker.role-mapping.use-mapped-roles-only>  
                <tracetracker.server.type>jboss</tracetracker.server.type>  
                <!-- Keystores -->  
                <tracetracker.server-cert.key-store.file>${tracetrackerServerCertKeyStoreFile}</tracetracker.server-cert.key-store.file>  
                <tracetracker.server-cert.key-store.password>${tracetrackerServerCertKeyStorePassword}</tracetracker.server-cert.key-store.password>  
                <tracetracker.trust-store.url>security/trust/testcacerts</tracetracker.trust-store.url>  
                <tracetracker.trust-store.password>XXX</tracetracker.trust-store.password>  
                <tracetracker.data.hibernate.properties-template>${basedir}/../tt-main/src/resources/hibernate-${tracetracker.database.type}.properties.vm</tracetracker.data.hibernate.properties-template>  
                <maven.hastings.jartool.transform.aliasWithPrefix>com</maven.hastings.jartool.transform.aliasWithPrefix>  
                <maven.hastings.jartool.transform.pattern>.*.war|.*.sar|.*-(biz|prez)-.*.jar</maven.hastings.jartool.transform.pattern>  
                <!-- These database settings are default unless overriden in the instance properties -->  
                <tracetracker.data.hibernate.dialect>org.hibernate.dialect.PostgreSQLDialect</tracetracker.data.hibernate.dialect>  
                <tracetracker.data.hibernate.showSql>false</tracetracker.data.hibernate.showSql>  
                <tracetracker.database.host>foyle</tracetracker.database.host>  
                <tracetracker.database.type>postgres</tracetracker.database.type>  
                <tracetracker.database.port>XXX</tracetracker.database.port>  
                <tracetracker.database.username>XXX</tracetracker.database.username>  
                <tracetracker.database.password>XXX</tracetracker.database.password>  
                <tracetracker.database.postgres.admin.username>XXX</tracetracker.database.postgres.admin.username>  
                <tracetracker.database.postgres.admin.password>XXX</tracetracker.database.postgres.admin.password>  
                <tracetracker.database.postgres.admin.encoding>UNICODE</tracetracker.database.postgres.admin.encoding>  
                <tracetracker.database.postgres.hibernate.delimiter>;</tracetracker.database.postgres.hibernate.delimiter>  
                <tracetracker.database.mysql.admin.username>XXX</tracetracker.database.mysql.admin.username>  
                <tracetracker.database.mysql.admin.password>XXX</tracetracker.database.mysql.admin.password>  
                <tracetracker.database.mysql.admin.encoding>UTF8</tracetracker.database.mysql.admin.encoding>  
                <tracetracker.database.mysql.hibernate.delimiter>;</tracetracker.database.mysql.hibernate.delimiter>  
                <!-- Default properties for properties defined in "user" profile in settings.xml -->  
                <tt.user.jboss.home>Set "tt.user.jboss.home" in settings.xml</tt.user.jboss.home>  
                <tt.user.jboss.portal.home>Set "tt.user.jboss.portal.home" in settings.xml</tt.user.jboss.portal.home>  
                <tracetrackerProductGTN>GTNet</tracetrackerProductGTN>  
                <projectBasedir>${project.basedir}</projectBasedir>  
                <tracetrackerVersion>${project.version}</tracetrackerVersion>  
                <tracetrackerOrganization>${project.organization.name}</tracetrackerOrganization>  
                <tracetrackerProductGAN>GTNet Access Node</tracetrackerProductGAN>  
                <tracetracker.tix.engine.name>engine</tracetracker.tix.engine.name>  
                <tracetracker.tix.engine.base-path>/tix-${tracetracker.tix.engine.name}</tracetracker.tix.engine.base-path>  
                <tracetracker.epcis.enabled>false</tracetracker.epcis.enabled>  
                <scmTagPrefix>TT_MAIN_</scmTagPrefix>  
                <scmTagController>true</scmTagController>  
                <!-- can be 'trunk' or 'branches' -->  
                <scmRootPath>trunk</scmRootPath>  
                <!-- scmBranchName must contain / before and after the branch name or just / if we are working with trunk -->  
                <scmBranchName>/</scmBranchName>  
                <urlBase>http://dev-no-01.pd.tracetracker.com/nightly/${scmRootPath}${scmBranchName}</urlBase>  
                <siteDeployBase>file:///home/cruise15/site/nightly/${scmRootPath}${scmBranchName}</siteDeployBase>  
                <scmConnectionBase>scm:svn:http://${user.name}@${pd.scm}/${scmRootPath}${scmBranchName}</scmConnectionBase>  
                <scmUrlBase>http://${pd.scm}/${scmRootPath}${scmBranchName}</scmUrlBase>  
                <release.build.machine>dev-no-02.pd.tracetracker.com</release.build.machine>
        </properties>
</project>