<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.github.davidmoten</groupId>
        <artifactId>sonatype-parent</artifactId>
        <version>0.1</version>
    </parent>
    <artifactId>plantuml-maven-plugin-parent</artifactId>
    <version>0.2.12</version>
    <packaging>pom</packaging>
    <name>${project.artifactId}</name>
    <inceptionYear>2022</inceptionYear>
    <description>Generates UML diagrams using PlantUML syntax</description>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.version>3.9.6</maven.version>
        <junit.version>4.13.2</junit.version>
        <bundle.plugin.version>5.1.9</bundle.plugin.version>
        <scm.url>scm:git:https://github.com/davidmoten/plantuml-maven-plugin.git</scm.url>
    </properties>
    <developers>
        <developer>
            <id>davidmoten</id>
            <name>Dave Moten</name>
        </developer>
    </developers>
    <scm>
        <connection>${scm.url}</connection>
        <developerConnection>${scm.url}</developerConnection>
        <url>${scm.url}</url>
        <tag>0.2.12</tag>
    </scm>
    <modules>
        <module>plantuml-maven-plugin</module>
        <module>plantuml-maven-plugin-test</module>
    </modules>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>${bundle.plugin.version}</version>
                <extensions>true</extensions>
                <configuration>
                    <obrRepository>NONE</obrRepository>
                    <instructions>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
