Skip to content

Commit 4084eba

Browse files
committed
Updated Readme (with shiny badge), added coverage calls for travis
1 parent bb3d7d5 commit 4084eba

File tree

3 files changed

+30
-5
lines changed

3 files changed

+30
-5
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
language: java
2+
23
jdk:
3-
- oraclejdk8
4+
- oraclejdk8
5+
6+
after_success:
7+
- ./gradlew cobertura coveralls

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
This is a small helper for me to translate Rubberduck.
44

5+
[![Coverage Status](https://coveralls.io/repos/Vogel612/TranslationHelper/badge.svg?branch=master&service=github)]
6+
(https://coveralls.io/github/Vogel612/TranslationHelper?branch=master)
7+
58
##Why?
69

710
- Manual XML editing is a royal PITA
@@ -10,12 +13,15 @@ This is a small helper for me to translate Rubberduck.
1013

1114
##What does it do?
1215

13-
Right now? not all that much. You can check out what's in my queue
14-
in the ["Backlog"](https://github.com/Vogel612/TranslationHelper/wiki/"Backlog")
16+
Right now? Right now I am able to edit translations in the RubberduckUI.de.resx file.
17+
The first milestone is already reached and now I'm about to clear out additional locales and
18+
general UX improvements.
1519

16-
Also for any possible bugs I still need to squash and features I'm currently working on,
20+
For any possible bugs I still need to squash and features I'm currently working on,
1721
check the [issues](https://github.com/Vogel612/TranslationHelper/issues)
1822

23+
For the things that are yet to come...I have my ["Backlog"](https://github.com/Vogel612/TranslationHelper/wiki/"Backlog")
24+
1925
##License
2026

2127
This project is licensed under the MIT License, see also the LICENSE file

build.gradle

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply plugin: 'java'
22
apply plugin: 'eclipse'
3+
apply plugin: 'cobertura'
4+
apply plugin: 'com.github.kt3k.coveralls'
35

46
version = '1.0'
57
sourceCompatibility = '1.8'
@@ -22,9 +24,22 @@ dependencies {
2224
compile group: 'jaxen', name: 'jaxen', version: '1.1.6'
2325
testCompile group: 'junit', name: 'junit', version: '4.+'
2426
testCompile 'org.mockito:mockito-all:2.0.2-beta'
25-
27+
2628
}
2729

30+
buildscript {
31+
repositories {
32+
mavenCentral()
33+
}
34+
35+
dependencies {
36+
classpath 'net.saliman:gradle-cobertura-plugin:2.0.0' // coverage reports :)
37+
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
38+
}
39+
}
40+
41+
cobertura.coverageFormats = ['html' , 'xml']
42+
2843
uploadArchives {
2944
repositories {
3045
flatDir {

0 commit comments

Comments
 (0)