You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@netbeans.apache.org by matthiasblaesing <gi...@git.apache.org> on 2017/10/10 19:01:33 UTC

[GitHub] incubator-netbeans issue #113: [NETBEANS-54] Module Review libs.xerces

Github user matthiasblaesing commented on the issue:

    https://github.com/apache/incubator-netbeans/pull/113
  
    Please recheck this as this breaks the build. My local build breaks different than the protocol from travis, but reproducible. To check yourself, please run in the repository:
    
    ```
    git clean -x -f
    ant
    ```
    
    The git clean part removes all files, that are not part of the repository. The downloaded file gets a different name and is can't be made available at build and compile time.
    
    Hava a look at project.properties - this should do it:
    
    ```diff
    # This patch file was generated by NetBeans IDE
    # It uses platform neutral UTF-8 encoding and \n newlines.
    --- a/libs.xerces/nbproject/project.properties
    +++ b/libs.xerces/nbproject/project.properties
    @@ -16,6 +16,6 @@
     # under the License.
     
     is.autoload=true
    -release.external/xerces-2.8.0.jar=modules/ext/xerces-2.8.0.jar
    +release.external/xercesImpl-2.8.0.jar=modules/ext/xerces-2.8.0.jar
     module.jar.verifylinkageignores=org.apache.xerces.util.XMLCatalogResolver
     spec.version.base=1.39.0
    
    ```


---