<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.modeshape</groupId>
    <artifactId>modeshape-parent</artifactId>
    <version>2.6.0.Beta2</version>
    <relativePath>../../../modeshape-parent</relativePath>
  </parent>

  <groupId>org.modeshape.examples</groupId>
  <artifactId>getting_started</artifactId>
  <packaging>pom</packaging>
  <name>ModeShape Getting Started examples</name>
  <description />

  <modules>
    <module>sequencers</module>
    <module>repositories</module>
  </modules>

  <build>
	  <plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<version>${maven.jar.plugin.version}</version>
				<executions>
					<execution>
						<id>test-jar</id>
						<!-- We don't want to run this -->
						<phase>non-existant</phase>
						<goals>
							<goal>test-jar</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<skip>true</skip>
					<attach>false</attach>
				</configuration>
			</plugin>
    </plugins>
  </build>
  
    <repositories>
        <repository>
            <id>jboss-public-repository-group</id>
            <name>JBoss Public Maven Repository Group</name>
            <url>https://repository.jboss.org/nexus/content/groups/public/</url>
            <layout>default</layout>
            <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
            </releases>
            <snapshots>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
            </snapshots>
        </repository>
    </repositories>
  
</project>