Skip to content

Commit

Permalink
Release of REST API Version 1.4.0
Browse files Browse the repository at this point in the history
* Upgrading jackson dependency
  • Loading branch information
Redor committed Feb 24, 2020
1 parent 2384b9d commit c67a5e2
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 17 deletions.
5 changes: 5 additions & 0 deletions changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ <h1>
REST API Plugin Changelog
</h1>

<p><b>1.4.0</b> -- February 24th, 2020</p>
<ul>
<li>Upgrading to jackson version: 1.9.11</li>
</ul>

<p><b>1.3.10</b> -- January 7th, 2020</p>
<ul>
<li>Updated the documentation to the latest state</li>
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<description>Allows administration over a RESTful API.</description>
<author>Roman Soldatow</author>
<version>${project.version}</version>
<date>01/07/2020</date>
<date>02/24/2020</date>
<minServerVersion>4.1.1</minServerVersion>
<adminconsole>
<tab id="tab-server">
Expand Down
38 changes: 22 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@
</parent>
<groupId>org.igniterealtime.openfire.plugins</groupId>
<artifactId>restAPI</artifactId>
<version>1.3.11-SNAPSHOT</version>
<version>1.4.0</version>
<name>REST API Plugin</name>
<description>Allows administration over a RESTful API.</description>


<properties>
<jackson.version>1.9.11</jackson.version>
<jersey.version>1.19.4</jersey.version>
</properties>

<developers>
<developer>
<name>Roman Soldatow</name>
Expand All @@ -27,44 +32,45 @@
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
<!-- Force the JSP compiler to an Openfire 4.2 compatible version -->
<version>9.2.14.v20151106</version>
<dependencies>
<dependency>
<groupId>org.igniterealtime.openfire</groupId>
<artifactId>xmppserver</artifactId>
<version>${openfire.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-xc</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.19.4</version>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
<version>1.19.4</version>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
<version>1.19.4</version>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-servlet</artifactId>
<version>1.19.4</version>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-json</artifactId>
<version>1.19.4</version>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
Expand Down

0 comments on commit c67a5e2

Please sign in to comment.