Terminating comments in sql files

Hi!

We want to use liquibase with our existing sql sources from version control system.
Many of the sources has start and end comments from IDE script generators, eg.:

-- trailing comment
create or replace view liquibase_termination_comments as select sysdate current_date from dual
/
-- terminating comment

This is my controller xml with my changeset definition:

<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
  xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
  xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
    http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd
    http://www.liquibase.org/xml/ns/dbchangelog-ext
    http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
  <changeSet id="liquibase_termination_comments.sql" author="author" runOnChange="true">
    <sqlFile path="liquibase_termination_comments.sql" relativeToChangelogFile="true" endDelimiter="/"/>
  </changeSet>
</databaseChangeLog>

If I try to run this scripts via “liquibase update” I get similar errors to the following:

Unexpected error running Liquibase: Migration failed for changeset liquibase_termination_comments.xml::liquibase_termination_comments.sql::author:
     Reason: liquibase.exception.DatabaseException: Ungültiger SQL-Typ: sqlKind = UNINITIALIZED [Failed SQL: (17439) -- terminating comment]

Is there any configuration to ignore these comments?
sqlfile stripComments=true is not an option, as it remove not only start and end comments, but also comments in the program objects itself.
Why is the problem only with the end and not with the start comment?
Or do I have to modify all sources before using liquibase?

Best regards
Torsten