<?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>
        <artifactId>atlassian-template-renderer</artifactId>
        <groupId>com.atlassian.templaterenderer</groupId>
        <version>5.1.1-jira-21e9779</version>
    </parent>

    <artifactId>velocity-scannable</artifactId>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>

    <dependencyManagement>
        <dependencies>
            <!-- Why does this maven module exist? -->
            <!-- For the sole purpose of enabling SourceClear to be able to scan that we depend on a fork of velocity -->
            <!-- It's not smart enough to realise it's forked, hopefully when we switch to Snyk we can remove this -->
            <dependency>
                <groupId>org.apache.velocity</groupId>
                <artifactId>velocity</artifactId>
                <version>${velocity16.version}</version>
                <!-- Leave this scope alone, we don't want it to be included in any artifacts -->
                <scope>test</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

</project>
