Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add simple travis ci script #17

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions .travis.yml
@@ -0,0 +1,13 @@
dist: trusty
sudo: false
language: java
jdk:
- oraclejdk8
- openjdk8
branches:
only:
- master
- develop
install: /bin/true
script:
- "mvn -q clean verify -U"
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -11,7 +11,9 @@ Highlights:



[![Build Status](http://ci.aksw.org/jenkins/job/jena-sparql-api/badge/icon)](http://ci.aksw.org/jenkins/job/jena-sparql-api/)
AKSW-CI [![Build Status](http://ci.aksw.org/jenkins/job/jena-sparql-api/badge/icon)](http://ci.aksw.org/jenkins/job/jena-sparql-api/)
, Travis-CI [master] [![Build Status](https://travis-ci.org/AKSW/jena-sparql-api.svg?branch=master)](https://travis-ci.org/AKSW/jena-sparql-api)
, Travis-CI [develop][![Build Status](https://travis-ci.org/AKSW/jena-sparql-api.svg?branch=develop)](https://travis-ci.org/AKSW/jena-sparql-api)

This library offers several [Jena](http://jena.apache.org/)-compatible ways to *transparently* add delays, caching, pagination, retry and even query transformations before sending off your original SPARQL query. This frees your application layer from the hassle of dealing with those issues. Also, the server module bundles Jena with the [Atmosphere](https://github.com/Atmosphere/atmosphere) framework, giving you a kickstart for REST and websocket implementations.

Expand Down