Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Update faster-jackson lib version to 2.9.8 #20

Merged
merged 2 commits into from
Jan 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build/RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
##Overview
## Overview

Adobe Ride uses a branching strategy in which all new code is implemented in the "develop" branch. From that branch certain changes are locked in releases via git tagging functionality. If you feel that a release from a previously released version (tag) is required. You'll need to branch from that tag and open a PR to the Adobe Ride owners requesting a new release tag.

##Versioning
## Versioning

Ride uses [Sematic Versioning ](https://semver.org/) for it's versioning scheme. Develop (a.k.a alpha) releases are built with the maven "SNAPSHOT" keyword appended to the end. There are currently no beta versions.

##Release Notification
## Release Notification

Initially, notification of new Ride releases will only be provided to repo subscribers. Subscribers will be notified if this changes.

2 changes: 1 addition & 1 deletion build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<rest-assured.version>3.0.6</rest-assured.version>
<jackson.version>2.9.6</jackson.version>
<jackson.version>2.9.8</jackson.version>
</properties>

<distributionManagement>
Expand Down
2 changes: 1 addition & 1 deletion sample/sample-service-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.1</version>
<version>2.9.8</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
Expand Down