Skip to content
This repository has been archived by the owner on Feb 15, 2021. It is now read-only.

Commit

Permalink
use new build system
Browse files Browse the repository at this point in the history
  • Loading branch information
oehme committed Dec 18, 2014
1 parent 80b540c commit a94c980
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 23 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
@@ -0,0 +1,6 @@
language: java
sudo: false
cache:
directories:
- $HOME/.gradle
script: ./gradlew check && ./.travis/releaseOnTag.sh
5 changes: 5 additions & 0 deletions .travis/releaseOnTag.sh
@@ -0,0 +1,5 @@
#!/bin/bash
set -ev
if [ -n "${TRAVIS_TAG}" ]; then
./gradlew release "-PreleaseVersion=${TRAVIS_TAG}"
fi
12 changes: 2 additions & 10 deletions README.md
Expand Up @@ -2,15 +2,9 @@ jnario-guice
============

Guice dependency injection for Jnario Specs
[![Build Status](https://travis-ci.org/oehme/jnario-guice.svg)](https://travis-ci.org/oehme/jnario-guice)
[![Download](https://api.bintray.com/packages/oehme/maven/jnario-guice/images/download.svg) ](https://bintray.com/oehme/maven/jnario-guice/_latestVersion)

[![Build Status](https://oehme.ci.cloudbees.com/job/jnario-guice/badge/icon)](https://oehme.ci.cloudbees.com/job/jnario-guice/)

<dependency>
<groupId>com.github.oehme.jnario</groupId>
<artifactId>jnario-guice</artifactId>
<version>...</version>
</dependency>

Features
========

Expand Down Expand Up @@ -38,5 +32,3 @@ Now you can use the @Inject annotation in your spec.
injected.greet should be "Hello"
}
}

![](http://www.cloudbees.com/sites/default/files/Button-Built-on-CB-1.png)
16 changes: 3 additions & 13 deletions build.gradle
@@ -1,20 +1,10 @@
buildscript {
repositories {
maven { url 'http://dl.bintray.com/oehme/maven/' }
}
dependencies {
classpath 'de.oehme.sobula:sobula:0.0.+'
}
}

plugins {
id 'org.xtend.xtend' version '0.3.1'
id 'org.xtend.xtend' version '0.3.5'
id 'com.github.oehme.sobula.bintray-release' version '0.4.1'
id 'com.github.oehme.sobula.stefan' version '0.4.1'
}
apply plugin: 'de.oehme.sobula.maven-release'
apply plugin: 'de.oehme.sobula.bintray-release'

group = 'com.github.oehme.jnario'
version = '1.0.1'
description = 'Guice dependency injection for Jnario Specs'

repositories {
Expand Down

0 comments on commit a94c980

Please sign in to comment.