Skip to content

Commit e936ece

Browse files
stokitoguusdk
authored andcommitted
feat: v1.8.0 Upgrade to Openfire 5.0.0
1 parent 366f070 commit e936ece

3 files changed

Lines changed: 10 additions & 23 deletions

File tree

changelog.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,11 @@ <h1>
4444
Search Plugin Changelog
4545
</h1>
4646

47-
<p><b>1.7.6</b> -- Unreleased</p>
47+
<p><b>1.8.0</b> -- Sep 25, 2025</p>
4848
<ul>
49-
<li>[<a href='https://github.com/igniterealtime/openfire-search-plugin/issues/19'>Issue #19</a>] - The search doesn't find anything if use a non-English localization</li>
49+
<li>Requires Openfire 5.0.0.</li>
50+
<li>[<a href='https://github.com/igniterealtime/openfire-search-plugin/issues/19'>Issue #19</a>] - Return search form in user's locale, fix search for non-English localization</li>
51+
<li>Fix missing FORM_TYPE value for results</li>
5052
<li>Refactoring</li>
5153
</ul>
5254

plugin.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
<author>${project.developers[0].name}</author>
88
<licenseType>apache</licenseType>
99
<version>${project.version}</version>
10-
<date>2025-06-25</date>
11-
<minServerVersion>4.4.0</minServerVersion>
12-
<minJavaVersion>11</minJavaVersion>
10+
<date>2025-09-25</date>
11+
<minServerVersion>5.0.0</minServerVersion>
1312

1413
<adminconsole>
1514
<tab id="tab-server">

pom.xml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<artifactId>plugins</artifactId>
66
<groupId>org.igniterealtime.openfire</groupId>
7-
<version>4.4.0</version>
7+
<version>5.0.0</version>
88
</parent>
99
<groupId>org.igniterealtime.openfire.plugins</groupId>
1010
<artifactId>search</artifactId>
11-
<version>1.7.6-SNAPSHOT</version>
11+
<version>1.8.0-SNAPSHOT</version>
1212
<name>Search</name>
1313
<description>Provides support for Jabber Search (XEP-0055)</description>
1414
<issueManagement>
@@ -43,11 +43,6 @@
4343
</snapshots>
4444
</repository>
4545
</repositories>
46-
<properties>
47-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
48-
<!-- Use static build timestamp for reproducible builds -->
49-
<project.build.outputTimestamp>1980-02-01T00:00:00Z</project.build.outputTimestamp>
50-
</properties>
5146
<build>
5247
<sourceDirectory>src/java</sourceDirectory>
5348
<plugins>
@@ -56,17 +51,8 @@
5651
</plugin>
5752
<!-- Compiles the Openfire Admin Console JSP pages. -->
5853
<plugin>
59-
<groupId>org.eclipse.jetty</groupId>
60-
<artifactId>jetty-jspc-maven-plugin</artifactId>
61-
<!-- Force the Openfire 4.2.x compatible version of JSP -->
62-
<version>9.2.14.v20151106</version>
63-
<dependencies>
64-
<dependency>
65-
<groupId>org.igniterealtime.openfire</groupId>
66-
<artifactId>xmppserver</artifactId>
67-
<version>${openfire.version}</version>
68-
</dependency>
69-
</dependencies>
54+
<groupId>org.eclipse.jetty.ee8</groupId>
55+
<artifactId>jetty-ee8-jspc-maven-plugin</artifactId>
7056
</plugin>
7157
</plugins>
7258
</build>

0 commit comments

Comments
 (0)