клевер граальс отчет не создан - PullRequest
0 голосов
/ 28 сентября 2018

Я пытаюсь использовать покрытие (https://grails.org/plugin/code-coverage) и клевер (https://grails.org/plugin/clover) в граалях 2.4.4 (java 1.7)

Покрытие работает нормально, но когда я использую Cloverон не сообщает и говорит, что:

 ....\grails-2.4.4\src\resources\tests\junit-frames.xsl:19:55: Fatal Error! tried to access class org.apache.xml.serializer.XSLOutputAttributes from class        org.apache.xalan.transformer.TransformerImpl Cause: java.lang.IllegalAccessError: tried to access class org.apache.xml.serializer.XSLOutputAttributes from class      org.apache.xalan.transformer.TransformerImpl 
   [junitreport] C:\Project\GrailsVersions\grails-2.4.4\src\resources\tests\junit-frames.xsl:0:0: Fatal Error! Fatal error during transformation Cause: Fatal error during transformation 
   [junitreport] Failed to process C:\....\target\test-reports\TESTS-TestSuites.xml  

[junitreport] Processing C:\....\target\test-reports\TESTS-TestSuites.xml to C:\Users\....\AppData\Local\Temp\null17502929 
[junitreport] Loading stylesheet C:\Project\GrailsVersions\grails-2.4.4\src\resources\tests\saxon\junit-frames.xsl  
 [junitreport] C:\Project\GrailsVersions\grails-2.4.4\src\resources\tests\saxon\junit-frames.xsl:866:55: Error! xsl:value-of necesita un atributo: select

также я использую рекомендованный конфиг:

grails.project.dependency.resolution = {
        plugins {
            compile 'org.grails.plugins:clover:4.3.1'
        }
        // For *Grails 2.2* or later you must also add a dependency to the Clover Core
        // or use the "legacyResolve true" option
        dependencies {
            compile 'org.openclover:clover:4.3.1'
        }
    }

Я изменил сериализатор-2.7.1 для сериализатора-2.7.0, но затем я могу начатьничего. Спасибо

...