You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mesos.apache.org by andschwa <gi...@git.apache.org> on 2017/11/02 16:43:16 UTC

[GitHub] mesos issue #247: Fixed reference to Mesos paper in the documentation.

Github user andschwa commented on the issue:

    https://github.com/apache/mesos/pull/247
  
    @mpereira Oh I know what's going on:
    
    > Please make sure Java proto files are generated in ../build/src/java/generated folder.
    
    The site generator expects the build to have been run, at least to the point of proto files being generated.
    
    Try
    
    ```
    mkdir build
    cd build
    cmake -DENABLE_JAVA=ON ..
    cmake --build . --target mesos-protobufs
    ```
    
    And then try generating the site again, I think it'll work.


---