Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ujibang committed Dec 31, 2016
1 parent 5536dda commit 22df0b6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.restheart</groupId>
<artifactId>restheart</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<packaging>jar</packaging>
<name>Restheart</name>
<description>
RESTHeart is the REST API data server for MongoDB.
</description>
<url>http://www.restheart.org</url>
<inceptionYear>2014</inceptionYear>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down Expand Up @@ -98,7 +98,7 @@
<connection>scm:git:[email protected]:SoftInstigate/restheart.git</connection>
<developerConnection>scm:git:[email protected]:SoftInstigate/restheart.git</developerConnection>
</scm>

<!-- TODO: Continuous Integration Management -->

<dependencies>
Expand Down Expand Up @@ -143,7 +143,7 @@
<artifactId>jansi</artifactId>
<version>1.14</version>
</dependency>

<dependency>
<groupId>org.everit.json</groupId>
<artifactId>org.everit.json.schema</artifactId>
Expand All @@ -170,7 +170,7 @@
<version>4.5.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
Expand All @@ -184,7 +184,7 @@
<version>4.5.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
Expand All @@ -204,7 +204,7 @@
<artifactId>tika-core</artifactId>
<version>1.14</version>
</dependency>

<dependency>
<groupId>de.svenkubiak</groupId>
<artifactId>jBCrypt</artifactId>
Expand Down Expand Up @@ -482,7 +482,7 @@
</plugins>
</reporting>
</profile>

<profile>
<id>release</id>
<build>
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/org/restheart/Configuration.java
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/*
* RESTHeart - the Web API for MongoDB
* Copyright (C) SoftInstigate Srl
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
Expand Down Expand Up @@ -57,7 +57,7 @@ public class Configuration {
/**
* URL pointing to the online documentation specific for this version.
*/
public static final String RESTHEART_ONLINE_DOC_URL = "http://restheart.org/curies/2.0";
public static final String RESTHEART_ONLINE_DOC_URL = "http://restheart.org/curies/3.0";

private static final Logger LOGGER = LoggerFactory.getLogger(Configuration.class);

Expand Down Expand Up @@ -721,7 +721,7 @@ public Configuration(Map<String, Object> conf, boolean silent) throws Configurat
REPRESENTATION_FORMAT_KEY, DEFAULT_REPRESENTATION_FORMAT.name());

REPRESENTATION_FORMAT rf = REPRESENTATION_FORMAT.PLAIN_JSON;;

try {
rf = REPRESENTATION_FORMAT.valueOf(_representationFormat);
} catch (IllegalArgumentException iar) {
Expand Down

0 comments on commit 22df0b6

Please sign in to comment.