<?xml version="1.0" encoding="UTF-8"?>
<profilesXml xmlns="http://maven.apache.org/xsd/profiles-1.0.0.xsd"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://maven.apache.org/xsd/profiles-1.0.0.xsd">
    <profiles>
        <profile>
            <id>active</id>
            <properties>
				<test.property>test-property-value</test.property>
            </properties>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>active</activeProfile>
    </activeProfiles>
</profilesXml>
