Tax provider in der manifest.xml Datei macht die App unsichtbar für SW6.5

Hallo zusammen! Wir wollen mal den Tax Provider im Context einer App ausprobieren. Nach der Dokumentation wird es ab SW6.5 unterstützt und soll über die manifest Datei definiert werden. Leider wird die App nach dem Hinzufügen von diesem Abschnitt:

<tax>
        <tax-provider>
            <identifier>myCustomTaxProvider</identifier>                        <!-- Unique identifier of the tax provider -->
            <name>My custom tax provider</name>                                 <!-- Display name of the tax provider -->    
            <priority>1</priority>                                              <!-- Priority of the tax provider - can be changed in the administration as well -->
            <processUrl>https://tax-provider.app/provide-taxes</processUrl>     <!-- Url of your implementation - is called during checkout to provide taxes -->
        </tax-provider>
    </tax>

vom SW 6.5 Shop nicht mehr erkannt. Ohne den gibt es keine Probleme.

die manifest Datei sieht z.B. so aus:

<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/platform/trunk/src/Core/Framework/App/Manifest/Schema/manifest-1.0.xsd">
    <meta>
        <name>AdminExtensionSDKExampleApp</name>
        <label>Admin Extension SDK Example App</label>
        <description>This is an example app to show you a boilerplate structure for your admin extensions.</description>
        <author>Shopware AG</author>
        <copyright>(c) by Shopware AG</copyright>
        <version>1.0.0</version>
        <license>MIT</license>
    </meta>

    <setup>
        <registrationUrl>http://localhost:8888/authorize</registrationUrl>
        <secret>testSecret</secret>
    </setup>

    <admin>
        <base-app-url>http://localhost:8888/index.html</base-app-url>
    </admin>

    <permissions>
        <read>product_manufacturer</read>
        <update>product_manufacturer</update>
        <create>product_manufacturer</create>
        <delete>product_manufacturer</delete>
    </permissions>
    <tax>
        <tax-provider>
            <identifier>myCustomTaxProvider</identifier>                        <!-- Unique identifier of the tax provider -->
            <name>My custom tax provider</name>                                 <!-- Display name of the tax provider -->    
            <priority>1</priority>                                              <!-- Priority of the tax provider - can be changed in the administration as well -->
            <processUrl>https://tax-provider.app/provide-taxes</processUrl>     <!-- Url of your implementation - is called during checkout to provide taxes -->
        </tax-provider>
    </tax>
</manifest>

Hat jemand damit Erfahrung? Ich freue mich auf eine Rückmeldung!

Doku updated, Antwort hier: stackoverflow