Skip to content

Commit f33bee9

Browse files
authored
Merge pull request #8 from ma1uta/OF-1662
OF-1662 Bookmarks menu isn't loading since 1.0.1 update.
2 parents b64d2bb + 92d8270 commit f33bee9

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

changelog.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
border-bottom : 1px #ccc solid;
2727
padding-bottom : 2px;
2828
}
29-
29+
3030
TT {
3131
font-family : courier new;
3232
font-weight : bold;
@@ -44,6 +44,11 @@ <h1>
4444
Bookmarks Plugin Changelog
4545
</h1>
4646

47+
<p><b>1.0.2</b> -- January 16, 2019</p>
48+
<ul>
49+
<li>[<a href="https://github.com/igniterealtime/openfire-bookmarks-plugin/issues/6">#6</a>] - Bookmarks menu isn't loading since 1.0.1 update.</li>
50+
</ul>
51+
4752
<p><b>1.0.1</b> -- December 23, 2018</p>
4853
<ul>
4954
<li>[<a href='https://issues.igniterealtime.org/browse/OF-1641'>OF-1641</a>] - Ensure all JSP pages have the correct contentType .</li>

pom.xml

Lines changed: 6 additions & 2 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.3.0-beta</version>
7+
<version>4.3.0</version>
88
</parent>
99
<groupId>org.igniterealtime.openfire.plugins</groupId>
1010
<artifactId>bookmarks</artifactId>
11-
<version>1.0.2-SNAPSHOT</version>
11+
<version>1.0.2</version>
1212
<name>Bookmarks Plugin</name>
1313
<description>Allows clients to store URL and group chat bookmarks (XEP-0048)</description>
1414

@@ -48,6 +48,10 @@
4848
</executions>
4949
<!-- End of override -->
5050
</plugin>
51+
<plugin>
52+
<groupId>org.eclipse.jetty</groupId>
53+
<artifactId>jetty-jspc-maven-plugin</artifactId>
54+
</plugin>
5155
</plugins>
5256

5357
</build>

src/web/WEB-INF/web.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
5+
version="3.1">
6+
</web-app>

0 commit comments

Comments
 (0)