Skip to content

Commit

Permalink
Release 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YacongGu committed Jan 4, 2017
1 parent 584b087 commit 9dbefc5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -10,4 +10,4 @@ before_script:
script:
- echo "Travis branch is $TRAVIS_BRANCH"
- echo "Travis branch is in pull request $TRAVIS_PULL+REQUEST"
- ./gradlew :lib:test :tinypinyin-lexicons-android-cncity:test
- ./gradlew clean build :lib:test :tinypinyin-lexicons-android-cncity:test :tinypinyin-android-asset-lexicons:test
9 changes: 0 additions & 9 deletions config/quality-java.gradle
@@ -1,5 +1,4 @@
apply plugin: 'checkstyle'
apply plugin: 'findbugs'

checkstyle {
// will fire "java.lang.ClassNotFoundException: com.puppycrawl.tools.checkstyle
Expand All @@ -25,12 +24,4 @@ task checkstyle(type: Checkstyle, group: 'verification') {

// empty classpath
classpath = files()
}

findbugs {
toolVersion = "3.0.1"
ignoreFailures = false
effort = "max"
reportLevel = "high"
excludeFilter file('../config/quality/findbugs/findbugs-filter.xml')
}
2 changes: 1 addition & 1 deletion config/quality/findbugs/findbugs-filter.xml
Expand Up @@ -5,6 +5,6 @@
<Class name="~.*\.R\$.*"/>
</Match>
<Match>
<Class name="~.*\.Manifest\$.*"/>
<Class name="~.*\.Manifest\$.*"/>
</Match>
</FindBugsFilter>
Expand Up @@ -34,7 +34,7 @@ private static String fullSampleStr() {
reader = new BufferedReader(new InputStreamReader(is));
String line;
while ((line = reader.readLine()) != null) {
sb.append(line);
sb.append(line);
}
} catch (IOException e) {
e.printStackTrace();
Expand Down

0 comments on commit 9dbefc5

Please sign in to comment.