update to jackson 2.8.4

This commit is contained in:
Jörg Prante 2016-11-02 22:05:50 +01:00
parent 609caade95
commit 045da0e218
3 changed files with 6 additions and 54 deletions

View file

@ -1,12 +1,12 @@
language: java
sudo: required
jdk:
- oraclejdk8
- oraclejdk8
cache:
directories:
- $HOME/.m2
after_success:
- ./gradlew sonarqube -Dsonar.host.url=https://sonarqube.com -Dsonar.login=$SONAR_TOKEN
- ./gradlew sonarqube -Dsonar.host.url=https://sonarqube.com -Dsonar.login=$SONAR_TOKEN
env:
global:
secure: n1Ai4q/yMLn/Pg5pA4lTavoJoe7mQYB1PSKnZAqwbgyla94ySzK6iyBCBiNs/foMPisB/x+DHvmUXTsjvquw9Ay48ZITCV3xhcWzD0eZM2TMoG19CpRAEe8L8LNuYiti9k89ijDdUGZ5ifsvQNTGNHksouayAuApC3PrTUejJfR6SYrp1ZsQTbsMlr+4XU3p7QknK5rGgOwATIMP28F+bVnB05WJtlJA3b0SeucCurn3wJ4FGBQXRYmdlT7bQhNE4QgZM1VzcUFD/K0TBxzzq/otb/lNRSifyoekktDmJwQnaT9uQ4R8R6KdQ2Kb38Rvgjur+TKm5i1G8qS2+6LnIxQJG1aw3JvKK6W0wWCgnAVVRrXaCLday9NuY59tuh1mfjQ10UcsMNKcTdcKEMrLow506wSETcXc7L/LEnneWQyJJeV4vhPqR7KJfsBbeqgz3yIfsCn1GZVWFlfegzYCN52YTl0Y0uRD2Z+TnzQu+Bf4DzaWXLge1rz31xkhyeNNspub4h024+XqBjcMm6M9mlMzmmK8t2DIwPy/BlQbFBUyhrxziuR/5/2NEDPyHltvWkRb4AUIa25WJqkV0gTBegbMadZ9DyOo6Ea7aoVFBae2WGR08F1kzABsWrd1S7UJmWxW35iyMEtoAIayXphIK98qO5aCutwZ+3iOQazxbAs=

View file

@ -1,55 +1,12 @@
# xbib Content
image:https://api.travis-ci.org/xbib/content.svg[title="Build status", link="https://travis-ci.org/xbib/content/build"]
image:https://img.shields.io/sonar/http/nemo.sonarqube.com/org.xbib%20content/coverage.svg?style=flat-square[title="Coverage", link="https://sonarqube.com/dashboard/index?id=org.xbib%3Acontent"]
image:https://img.shields.io/sonar/http/nemo.sonarqube.com/org.xbib%3Acontent/coverage.svg?style=flat-square[title="Coverage", link="https://sonarqube.com/dashboard/index?id=org.xbib%3Acontent"]
image:https://maven-badges.herokuapp.com/maven-central/org.xbib/content/badge.svg[title="Maven Central", link="http://search.maven.org/#search%7Cga%7C1%7Cxbib%20content"]
image:https://img.shields.io/badge/License-Apache%202.0-blue.svg[title="Apache License 2.0", link="https://opensource.org/licenses/Apache-2.0"]
This is a Java library for processing structured data ("content") in the most popular formats, such as
JSON, SMILE-JSON, YAML, XML, CSV, and also semantic descriptions in RDF (N-Triples, Turtle, RDF/XML).
xbib Content offers stream-based Java builders, parsers, and a settings API oder the formats, so it is very convenienant
to use. The only dependency is https://github.com/fasterxml/jackson[the Java Jackson library].
## Usage
The library is provided by Maven Central repository. You can use the library with Gradle
```
dependencies {
compile "org.xbib:content-core:1.0.1"
compile "org.xbib:content-csv:1.0.1"
compile "org.xbib:content-json:1.0.1"
compile "org.xbib:content-language:1.0.1"
compile "org.xbib:content-rdf:1.0.1"
compile "org.xbib:content-resource:1.0.1"
compile "org.xbib:content-smile:1.0.1"
compile "org.xbib:content-xml:1.0.1"
compile "org.xbib:content-yaml:1.0.1"
}
```
or with Maven
```
<dependency>
<groupId>org.xbib</groupId>
<artifactId>content-core</artifactId>
<version>1.0.1</version>
</dependency>
```
# License
Copyright (C) 2016 Jörg Prante
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
you may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View file

@ -8,14 +8,14 @@ plugins {
ext {
versions = [
'jackson' : '2.8.3'
'jackson' : '2.8.4'
]
}
allprojects {
group = 'org.xbib'
version = '1.0.1'
version = '1.0.2'
apply plugin: 'java'
apply plugin: 'maven'
@ -25,11 +25,6 @@ allprojects {
apply plugin: 'checkstyle'
apply plugin: "jacoco"
repositories {
mavenLocal()
mavenCentral()
}
configurations {
wagon
}