<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>guru.mocker</groupId>
        <artifactId>parent</artifactId>
        <version>1.0.20</version>
    </parent>

    <artifactId>semantic-java-diff</artifactId>
    <version>1.0.35</version>
    <packaging>pom</packaging>

    <name>Semantic Java Diff</name>
    <description>Aggregator for semantic Java comparison modules</description>

    <modules>
        <module>parent</module>
        <module>comparator-core</module>
        <module>comparator-integration-tests</module>
    </modules>

    <scm>
        <!--suppress UnresolvedMavenProperty -->
        <url>${guru.mocker.semantic-java-diff.scm.url}</url>
        <connection>scm:git:${project.scm.url}</connection>
        <developerConnection>${project.scm.connection}</developerConnection>
        <tag>semantic-java-diff-1.0.35</tag>
    </scm>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>release</id>
            <properties>
                <!--suppress UnresolvedMavenProperty -->
                <guru.mocker.semantic-java-diff.scm.url>${BITBUCKET_GIT_HTTP_ORIGIN}</guru.mocker.semantic-java-diff.scm.url>
            </properties>
        </profile>
    </profiles>
</project>
