File tree Expand file tree Collapse file tree 3 files changed +30
-5
lines changed Expand file tree Collapse file tree 3 files changed +30
-5
lines changed Original file line number Diff line number Diff line change 11language : java
2+
23jdk :
3- - oraclejdk8
4+ - oraclejdk8
5+
6+ after_success :
7+ - ./gradlew cobertura coveralls
Original file line number Diff line number Diff line change 22
33This 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,
1721check 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
2127This project is licensed under the MIT License, see also the LICENSE file
Original file line number Diff line number Diff line change 11apply plugin : ' java'
22apply plugin : ' eclipse'
3+ apply plugin : ' cobertura'
4+ apply plugin : ' com.github.kt3k.coveralls'
35
46version = ' 1.0'
57sourceCompatibility = ' 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+
2843uploadArchives {
2944 repositories {
3045 flatDir {
You can’t perform that action at this time.
0 commit comments