XML validation against XSD 1.1 with Xerces in Java

前端 未结 3 1796
Happy的楠姐
Happy的楠姐 2021-01-04 23:10

I have installed Xerces through Maven:


    
        junit
        jun         


        
3条回答
  •  情歌与酒
    2021-01-04 23:59

    It looks that you need Xerces2 Java 2.11.0 (XML Schema 1.1) (Beta) version, which isn't in maven repository. You can download it from Xerces website, and install it to your local maven repository: mvn install:install-file -Dfile=xercesImpl.jar -DgroupId=xerces -DartifactId=xercesImpl -Dversion=2.11.0.beta -Dpackaging=jar Then you will be able to include it in your Maven project dependencies:

    
        xerces
        xercesImpl
        2.11.0.beta
       
    

提交回复
热议问题