installing.rst 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .. _community_jwtheaders_installing:
  2. Installing JWT Headers
  3. ======================
  4. To install the JWT Headers module:
  5. #. To obtain the JWT Headers community module:
  6. * If working with a |release| nightly build, download the module: :download_community:`jwt-headers`
  7. Verify that the version number in the filename corresponds to the version of GeoServer you are running (for example |release| above).
  8. * Community modules are not yet ready for distribution with GeoServer release.
  9. To compile the JWT Headers community module yourself download the src bundle for your GeoServer version and compile:
  10. .. code-block:: bash
  11. cd src/community
  12. mvn install -PcommunityRelease -DskipTests
  13. And package:
  14. .. code-block:: bash
  15. cd src/community
  16. mvn assembly:single -N
  17. #. Place the JARs in ``WEB-INF/lib``.
  18. #. Restart GeoServer.
  19. For developers;
  20. .. code-block:: bash
  21. cd src
  22. mvn install -Pjwt-headers -DskipTests