<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">
    <description>
        This is Redora's "maven mojo", the plugin that once it is connected to a project it can start generate
        source code for that project.
    </description>
    <parent>
        <artifactId>redora</artifactId>
        <groupId>net.redora</groupId>
        <version>1.9.2</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>generator</artifactId>
    <packaging>maven-plugin</packaging>
    <name>Redora Generator (Mojo)</name>
    <repositories>
        <repository>
            <id>jboss</id>
            <url>http://repository.jboss.org/nexus/content/repositories/releases/</url>
        </repository>
    </repositories>
    <dependencies>
        <dependency>
            <groupId>net.redora</groupId>
            <artifactId>core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.freemarker</groupId>
            <artifactId>freemarker</artifactId>
            <version>2.3.18</version>
        </dependency>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>3.0.3</version>
        </dependency>

        <dependency>  <!-- a.o. the Infector tool to manipulate/plurify strings -->
            <groupId>org.modeshape</groupId>
            <artifactId>modeshape-common</artifactId>
            <version>2.6.0.Final</version>
        </dependency>
    </dependencies>
</project>
