<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>
    <!-- innocuous commit -->


    <parent>
        <groupId>com.atlassian.pom</groupId>
        <artifactId>atlassian-public-pom</artifactId>
        <version>29.16</version>
    </parent>

  <groupId>com.atlassian.dummy</groupId>
  <artifactId>dummy-public</artifactId>
  <packaging>jar</packaging>
  <version>1.58</version>

  <name>dummy</name>
  <url>https://bitbucket.org/atlassian/public-dummy-project/
</url>

<licenses>
    <license>
       <name>Apache License 2.0</name>
       <url>https://maven.atlassian.com/public/licenses/license.txt</url>
       <distribution>repo</distribution>
    </license>
</licenses>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>

<dependency>
  <groupId>com.google.code.gson</groupId>
  <artifactId>gson</artifactId>
  <version>1.7.2</version>
</dependency>
<dependency>
  <groupId>jzlib</groupId>
  <artifactId>jzlib</artifactId>
  <version>1.0.5</version>
</dependency>
    <dependency>
	<groupId>com.atlassian.dummy</groupId>
	<artifactId>dummy-private</artifactId>
	<version>1.3.5.10</version>
	<type>pom</type>
    </dependency>
    <dependency>
	<groupId>com.sun.jersey</groupId>
	<artifactId>jersey-server</artifactId>
	<version>1.8</version>
    </dependency>
    <dependency>
	<groupId>com.sun.jersey</groupId>
	<artifactId>jersey-grizzly</artifactId>
	<version>1.8</version>
    </dependency>

  </dependencies>


  <scm>
      <connection>scm:git:ssh://git@bitbucket.org/atlassian/public-dummy-project.git</connection>
      <developerConnection>scm:git:ssh://git@bitbucket.org/atlassian/public-dummy-project.git</developerConnection>
    <url>https://bitbucket.org/atlassian/public-dummy-project</url>
  </scm>



    <build>
    <pluginManagement>
      <plugins>
          <plugin>
            <groupId>com.atlassian.maven.plugins</groupId>
            <artifactId>maven-jgitflow-plugin</artifactId>
            <version>1.0-alpha27</version>
            <configuration>
               <flowInitContext>
                 <masterBranchName>master</masterBranchName>
                 <developBranchName>master</developBranchName>
               </flowInitContext>
            </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
	<plugins>
            <plugin>
                <groupId>com.atlassian.maven.plugins</groupId>
                <artifactId>sandbox-maven-plugin</artifactId>
                <version>2.1-beta11</version>
                <executions>
                    <execution>
                        <id>enable-sandbox</id>
                        <phase>validate</phase>
                        <goals>
                            <goal>sandbox</goal>
                        </goals>
                    </execution>
                </executions>
			</plugin>
			<plugin>
				<artifactId>maven-enforcer-plugin</artifactId>
				<groupId>org.apache.maven.plugins</groupId>
				<executions>
					<execution>
						<id>enforce-build-environment</id>
						<phase>none</phase>
					</execution>
				</executions>
			</plugin>
	</plugins>
    </build>

    <properties>
		<dummypriv.version>1.3.5.10</dummypriv.version>
		<dummy.version>1.32-SNAPSHOT</dummy.version>
    </properties>



</project>
