Generates the latest/greatest Maven-based artifacts for the Openfire project, every night.

Build: #1695 was successful

Job: Run Maven was successful

Stages & jobs

  1. Build and Package

  2. Deploy

  3. copy nightlies to website

Code commits

Openfire (master)

  • Dan Caseley <dan@caseley.me.uk>

    Dan Caseley <dan@caseley.me.uk> 48568dbcd418d54bdc45190084323e12582756ce

    Merge pull request #1916 from guusdk/OF-2328_Cache-locking-non-clustered
    OF-2328: Implement optional Lock functionality for local locks

  • Dan Caseley <dan@caseley.me.uk>

    Dan Caseley <dan@caseley.me.uk> 43b08ca964fd0d4cc5b881e18077ed18453f9c97

    Merge pull request #1915 from guusdk/OF-2329_XML-parser-whitespace-after-tag-name
    OF-2329: Fix XML parser behavior when detecting the name of the start tag

  • Guus der Kinderen

    Guus der Kinderen 1b7d50c7b4add0a988b06556eb0e36ee3d1f3900

    OF-2328: Implement optional Lock functionality for local locks
    The clustered locks (based on Hazelcast) have some methods implemented that are not available in the non-clustered code.

    The changes that have been applied to MUC's clustering implementation (OF-2220 for example) has introduced usage of these optional methods. This results in failing functionality when running Openfire in a non-clustered setup.

    This commit adds an implementation for these optional methods.

    • xmppserver/src/main/java/org/jivesoftware/util/cache/DefaultLocalCacheStrategy.java (version 1b7d50c7b4add0a988b06556eb0e36ee3d1f3900)
  • Guus der Kinderen

    Guus der Kinderen b0dff73cfae6fe9b6183449a906718fc134f4c7d m

    OF-2329: Fix XML parser behavior when detecting the name of the start tag
    The name of the start tag is possibly terminated by any newline character (eg: a newline character), not only the space character.

    • xmppserver/src/main/java/org/jivesoftware/openfire/nio/XMLLightweightParser.java (version b0dff73cfae6fe9b6183449a906718fc134f4c7d)
    • xmppserver/src/test/java/org/jivesoftware/openfire/nio/XMLLightweightParserTest.java (version b0dff73cfae6fe9b6183449a906718fc134f4c7d)