<?xml version="1.0" encoding="UTF-8"?><project>
  <parent>
    <artifactId>apache</artifactId>
    <groupId>org.apache</groupId>
    <version>3</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.apache.geronimo.genesis</groupId>
  <artifactId>genesis</artifactId>
  <packaging>pom</packaging>
  <name>Genesis</name>
  <version>1.1</version>
  <description>Genesis provides support for Maven2 builds; adding shared configurations
        and common plugins.</description>
  <url>http://geronimo.apache.org</url>
  <inceptionYear>2003</inceptionYear>
  <scm>
    <connection>scm:svn:https://svn.apache.org/repos/asf/geronimo/genesis/tags/genesis-1.1</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/geronimo/genesis/tags/genesis-1.1</developerConnection>
    <url>https://svn.apache.org/repos/asf/geronimo/genesis/tags/genesis-1.1</url>
  </scm>
  <build>
    <extensions>
      <extension>
        <groupId>org.apache.maven.wagon</groupId>
        <artifactId>wagon-ssh</artifactId>
        <version>1.0-beta-1</version>
      </extension>
    </extensions>
    <defaultGoal>install</defaultGoal>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-release-plugin</artifactId>
          <version>2.0-beta-4</version>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.4</source>
          <target>1.4</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-idea-plugin</artifactId>
        <configuration>
          <jdkName>1.4</jdkName>
          <jdkLevel>1.4</jdkLevel>
          <linkModules>true</linkModules>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <tagBase>https://svn.apache.org/repos/asf/geronimo/genesis/tags</tagBase>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>default</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <modules>
        <module>config</module>
        <module>plugins</module>
      </modules>
    </profile>
    <profile>
      <id>stage-bootstrap</id>
      <activation>
        <property>
          <name>stage</name>
          <value>bootstrap</value>
        </property>
      </activation>
      <modules>
        <module>config/checkstyle-config</module>
      </modules>
    </profile>
    <profile>
      <id>output</id>
      <build>
        <defaultGoal>deploy</defaultGoal>
      </build>
      <distributionManagement>
        <repository>
          <uniqueVersion>false</uniqueVersion>
          <id>output-releases</id>
          <url>file://${output.dir}/release</url>
        </repository>
        <snapshotRepository>
          <uniqueVersion>false</uniqueVersion>
          <id>output-snapshots</id>
          <url>file://${output.dir}/snapshots</url>
        </snapshotRepository>
        <site>
          <id>output-website</id>
          <url>file://${output.dir}/website</url>
        </site>
      </distributionManagement>
    </profile>
    <profile>
      <id>staging</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.0.2</version>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
            <inherited>true</inherited>
          </plugin>
          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.2</version>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
            <inherited>true</inherited>
            <configuration>
              <source>1.5</source>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-deploy-plugin</artifactId>
            <version>2.3-20061210.174233-3</version>
            <inherited>true</inherited>
            <configuration>
              <updateReleaseInfo>true</updateReleaseInfo>
              <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-site-plugin</artifactId>
            <version>2.0-beta-5</version>
            <executions>
              <execution>
                <goals>
                  <goal>stage-deploy</goal>
                </goals>
                <configuration>
                  <stagingSiteURL>${staging.siteURL}</stagingSiteURL>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.0-alpha-2-20061214.035657-1</version>
            <executions>
              <execution>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <passphrase>${gpg.passphrase}</passphrase>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-remote-resources-plugin</artifactId>
            <version>1.0-alpha-1</version>
            <executions>
              <execution>
                <goals>
                  <goal>process</goal>
                </goals>
                <configuration>
                  <resourceBundles>
                    <resourceBundle>org.apache:apache-jar-resource-bundle:1.0</resourceBundle>
                  </resourceBundles>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
      <pluginRepositories>
        <pluginRepository>
          <releases>
            <enabled>false</enabled>
          </releases>
          <snapshots />
          <id>apache.org</id>
          <name>Maven Plugin Snapshots</name>
          <url>http://people.apache.org/repo/m2-snapshot-repository</url>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>
  <distributionManagement>
    <site>
      <id>geronimo-website</id>
      <url>scp://people.apache.org/www/geronimo.apache.org/maven/genesis</url>
    </site>
    <status>deployed</status>
  </distributionManagement>
</project>