<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.jenkins-ci.plugins</groupId>
    <artifactId>plugin</artifactId>
    <version>1.399</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <!--
    At least 1.392 required for EnvironmentContributor.

    1.393 through 1.398 should be avoided.
    https://groups.google.com/d/topic/jenkinsci-dev/O50B7XnINoo/discussion

    Jenkins core source code not found for 1.392, so using 1.399 instead.
  -->

  <scm>
    <connection>
      scm:git:git://github.com/jenkinsci/files-found-trigger-plugin.git
    </connection>
    <developerConnection>
      scm:git:git@github.com:jenkinsci/files-found-trigger-plugin.git
    </developerConnection>
    <url>
      https://github.com/jenkinsci/files-found-trigger-plugin
    </url>
  </scm>

  <build>
    <plugins>
      <!-- Enforce Java 5.0 compatibility. -->
      <plugin>
        <groupId>org.jvnet</groupId>
        <artifactId>animal-sniffer</artifactId>
        <version>1.2</version>
        <executions>
          <execution>
            <id>animal-sniffer</id>
            <phase>compile</phase>
            <goals>
              <goal>check</goal>
            </goals>
            <configuration>
              <signature>
                <groupId>org.jvnet.animal-sniffer</groupId>
                <artifactId>java1.5</artifactId>
                <version>1.0</version>
              </signature>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <artifactId>files-found-trigger</artifactId>
  <packaging>hpi</packaging>
  <version>1.3</version>
  <name>Files Found Trigger</name>
  <description>Schedules a build when certain files exist</description>
  <url>http://wiki.jenkins-ci.org/display/JENKINS/Files+Found+Trigger</url>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.powermock</groupId>
      <artifactId>powermock-module-junit4</artifactId>
      <version>1.4.9</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>1.8.5</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.powermock</groupId>
      <artifactId>powermock-api-mockito</artifactId>
      <version>1.4.9</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <developers>
    <developer>
      <id>stevengbrown</id>
      <name>Steven Brown</name>
      <email>StevenGBrown@gmail.com</email>
    </developer>
  </developers>
</project>
