<?xml version="1.0" encoding="UTF-8"?>
<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>

  <artifactId>spec-driven-specification_2.12</artifactId>
  <version>1.0.0</version>

  <name>spec-driven-specification</name>
  <description>Implementation-independent specification of the Spec-Driven features.</description>
  <url>https://github.com/jackadull/spec-driven</url>

  <parent>
    <groupId>net.jackadull</groupId>
    <artifactId>scala-parent_2.12</artifactId>
    <version>1.5.2</version>
    <relativePath></relativePath>
  </parent>

  <licenses>
    <license>
      <name>MIT License</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
    </license>
  </licenses>

  <developers>
    <developer>
      <name>Matthias Deja</name>
      <email>m@jackadull.net</email>
      <organization>Jackadull</organization>
      <organizationUrl>http://jackadull.net</organizationUrl>
    </developer>
  </developers>

  <scm>
    <connection>scm:git:git://github.com/jackadull/spec-driven.git</connection>
    <developerConnection>scm:git:git://github.com/jackadull/spec-driven.git</developerConnection>
    <url>https://github.com/jackadull/spec-driven</url>
  </scm>

  <issueManagement>
    <system>GitHub Issues</system>
    <url>https://github.com/orgs/jackadull/projects/1</url>
  </issueManagement>

  <properties>
    <version.dependency.bridge.scalatest>1.0.0</version.dependency.bridge.scalatest>
    <version.dependency.spec-driven>1.0.0</version.dependency.spec-driven>
  </properties>

  <dependencies>
    <dependency>
      <groupId>net.jackadull</groupId>
      <artifactId>spec-driven_2.12</artifactId>
      <version>${version.dependency.spec-driven}</version>
    </dependency>
    <dependency>
      <groupId>net.jackadull</groupId>
      <artifactId>spec-driven-scalatest_2.12</artifactId>
      <version>${version.dependency.bridge.scalatest}</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>templating-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>

  <profiles>
    <profile>
      <id>jackadull-ci</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>${version.plugin.jacoco}</version>
            <executions>
              <execution>
                <phase>verify</phase>
                <goals>
                  <goal>report-aggregate</goal>
                </goals>
                <configuration>
                  <excludes>
                    <exclude>net/jackadull/specdriven/SpecDriven*Info*</exclude>
                    <exclude>net/jackadull/specdriven/*/SpecDriven*Info*</exclude>
                    <exclude>net/jackadull/specdriven/specification/**</exclude>
                    <exclude>net/jackadull/specdriven/bridge/scalatest/ScalaTestAssertOutcome*</exclude>
                  </excludes>
                </configuration>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>
