<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>
    <groupId>berlin.softwaretechnik</groupId>
    <artifactId>jlauncher-plantuml</artifactId>
    <packaging>jar</packaging>
    <name>jlauncher-plantuml</name>
    <description>
        jlauncher wrapper for plantuml, so that we
        can launch plantuml like so:

        $ jlauncher berlin.softaretechnik:jlauncher-plantuml:0.0.1
    </description>
    <url>https://github.com/softwaretechnik-berlin/jlauncher-plantuml</url>
    <licenses>
        <license>
            <name>MIT License</name>
            <url>http://www.opensource.org/licenses/mit-license.php</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <url>https://github.com/softwaretechnik-berlin/jlauncher-plantuml</url>
        <connection>git@github.com:softwaretechnik-berlin/jlauncher-plantuml.git</connection>
    </scm>
    <developers>
        <developer>
            <id>fleipold</id>
            <name>Felix Leipold</name>
        </developer>
    </developers>
    <version>0.0.2</version>
    <build>
        <plugins>
            <plugin>
                <groupId>org.buildobjects</groupId>
                <artifactId>j-maven-plugin</artifactId>
                <version>0.1</version>
                <executions>
                    <execution>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>j</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>net.sourceforge.plantuml.Run</mainClass>
                </configuration>
            </plugin>
        </plugins>

    </build>
    <dependencies>
        <!-- https://mvnrepository.com/artifact/net.sourceforge.plantuml/plantuml -->
        <dependency>
            <groupId>net.sourceforge.plantuml</groupId>
            <artifactId>plantuml</artifactId>
            <version>1.2021.0</version>
        </dependency>
    </dependencies>

</project>
