<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</groupId>
        <artifactId>jenkins</artifactId>
        <version>1.39</version>
    </parent>

    <groupId>org.jenkins-ci.lib</groupId>
    <artifactId>envinject-lib</artifactId>
    <version>1.27</version>
    <packaging>jar</packaging>
    <name>Jenkins EnvInject Library</name>
    <url>https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+API+Plugin</url>

    <licenses>
        <license>
            <name>MIT license</name>
            <comments>All source code is under the MIT license.</comments>
        </license>
    </licenses>

    <developers>
        <developer>
            <id>gbois</id>
            <name>Gregory Boissinot</name>
            <timezone>+1</timezone>
            <roles>
                <role>Project Owner (retired)</role>
                <role>Project Lead Developer (retired)</role>
            </roles>
        </developer>
        <developer>
            <id>oleg_nenashev</id>
            <name>Oleg Nenashev</name>
            <timezone>+1</timezone>
            <roles>
                <role>Maintainer</role>
            </roles>
        </developer>
    </developers>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.level>7</java.level>
        <jenkins.core.version>1.625.3</jenkins.core.version>
    </properties>

    <scm>
        <connection>scm:git:git://github.com/jenkinsci/envinject-lib.git</connection>
        <developerConnection>scm:git:git@github.com:jenkinsci/envinject-lib.git</developerConnection>
      <tag>envinject-lib-1.27</tag>
    </scm>

    <build>
      <plugins>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>findbugs-maven-plugin</artifactId>
          <configuration>
            <effort>Max</effort>
            <failOnError>true</failOnError>
          </configuration>
          <executions>
            <execution>
              <id>findbugs</id>
              <goals>
                <goal>check</goal>
              </goals>
              <phase>verify</phase>
              <configuration>
                <xmlOutput>true</xmlOutput>
                <findbugsXmlOutput>false</findbugsXmlOutput>
              </configuration>
            </execution>
          </executions>
        </plugin>
      </plugins>
    </build>

    <dependencies>

        <dependency>
            <groupId>org.jenkins-ci.main</groupId>
            <artifactId>jenkins-core</artifactId>
            <version>${jenkins.core.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <!-- Baseline of Stapler in 1.625.3, required to fix upper bounds issue in the core -->
            <groupId>org.kohsuke.stapler</groupId>
            <artifactId>stapler</artifactId>
            <version>1.237</version>
            <scope>provided</scope>
            <exclusions>
                <exclusion>
                    <!-- Upper bounds conflict with the core -->
                    <groupId>com.google.guava</groupId>
                    <artifactId>guava</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>annotations</artifactId>
            <version>3.0.0</version>
            <scope>provided</scope>
        </dependency>

    </dependencies>

    <repositories>
        <repository>
            <id>repo.jenkins-ci.org</id>
            <name>Jenkins Repository</name>
            <url>https://repo.jenkins-ci.org/public/</url>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>repo.jenkins-ci.org</id>
            <url>https://repo.jenkins-ci.org/public/</url>
        </pluginRepository>
    </pluginRepositories>

</project>
