[ 
https://issues.apache.org/jira/browse/BEAM-4556?focusedWorklogId=116270&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-116270
 ]

ASF GitHub Bot logged work on BEAM-4556:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 27/Jun/18 02:49
            Start Date: 27/Jun/18 02:49
    Worklog Time Spent: 10m 
      Work Description: kennknowles closed pull request #5772: [BEAM-4556] 
Update Findbugs annotations dependency to version with SuppressFBWarnings
URL: https://github.com/apache/beam/pull/5772
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git 
a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy 
b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
index 807d00e8e1c..57549b874e9 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -599,8 +599,12 @@ class BeamModulePlugin implements Plugin<Project> {
         testApt auto_service
 
         // These dependencies are needed to avoid error-prone warnings on 
package-info.java files,
-        // also to include the annotations to supress warnings.
-        def findbugs_annotations = 
"com.github.stephenc.findbugs:findbugs-annotations:1.3.9-1"
+        // also to include the annotations to suppress warnings.
+        //
+        // findbugs-annotations artifact is licensed under LGPL and cannot be 
included in the
+        // Apache Beam distribution, but may be relied on during build.
+        // See: https://www.apache.org/legal/resolved.html#prohibited
+        def findbugs_annotations = "com.google.code.findbugs:annotations:3.0.1"
         compileOnly findbugs_annotations
         apt findbugs_annotations
         testCompileOnly findbugs_annotations
diff --git a/sdks/java/build-tools/src/main/resources/beam/checkstyle.xml 
b/sdks/java/build-tools/src/main/resources/beam/checkstyle.xml
index ec51e44112d..0bea3c56843 100644
--- a/sdks/java/build-tools/src/main/resources/beam/checkstyle.xml
+++ b/sdks/java/build-tools/src/main/resources/beam/checkstyle.xml
@@ -130,6 +130,12 @@ page at http://checkstyle.sourceforge.net/config.html -->
       <property name="format" 
value="com\.google\.api\.client\.util\.(ByteStreams|Charsets|Collections2|Joiner|Lists|Maps|Objects|Preconditions|Sets|Strings|Throwables)"/>
     </module>
 
+    <module name="RegexpSinglelineJava">
+      <property name="format" value="SuppressFBWarnings" />
+      <property name="ignoreComments" value="true" />
+      <property name="message" value="SuppressFBWarnings annotation is 
distributed under LGPL and should not appear in Apache Beam. See: 
https://github.com/apache/beam/pull/5772"; />
+    </module>
+
     <!--
          Require static importing from Preconditions.
     -->


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 116270)
    Time Spent: 1h 40m  (was: 1.5h)

> Enforce ErrorProne analysis in sdks-java-core project
> -----------------------------------------------------
>
>                 Key: BEAM-4556
>                 URL: https://issues.apache.org/jira/browse/BEAM-4556
>             Project: Beam
>          Issue Type: Improvement
>          Components: runner-direct
>            Reporter: Scott Wegner
>            Assignee: Scott Wegner
>            Priority: Minor
>              Labels: errorprone, starter
>          Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> Java ErrorProne static analysis was [recently 
> enabled|https://github.com/apache/beam/pull/5161] in the Gradle build 
> process, but only as warnings. ErrorProne errors are generally useful and 
> easy to fix. Some work was done to [make sdks-java-core 
> ErrorProne-clean|https://github.com/apache/beam/pull/5319] and add 
> enforcement, but for unrelated reasons the {{failOnWarning}} setting needed 
> to be reverted. This task is clean ErrorProne warnings and add enforcement in 
> {{beam-sdks-java-core}}. Additional context discussed on the [dev 
> list|https://lists.apache.org/thread.html/95aae2785c3cd728c2d3378cbdff2a7ba19caffcd4faa2049d2e2f46@%3Cdev.beam.apache.org%3E].
> Fixing this issue will involve:
> # Follow instructions in the [Contribution 
> Guide|https://beam.apache.org/contribute/] to set up a {{beam}} development 
> environment.
> # Run the following command to compile and run ErrorProne analysis on the 
> project: {{./gradlew :beam-sdks-java-core:assemble}}
> # Fix each ErrorProne warning from the {{sdks/java/core}} project.
> # In {{sdks/java/core/build.gradle}}, add {{failOnWarning: true}} to the call 
> the {{applyJavaNature()}} 
> ([example|https://github.com/apache/beam/pull/5319/files#diff-9390c20635aed5f42f83b97506a87333R20]).
> This starter issue is sponsored by [~swegner]. Feel free to [reach 
> out|https://beam.apache.org/community/contact-us/] with questions or code 
> review:
> * JIRA: [~swegner]
> * GitHub: [@swegner|https://github.com/swegner]
> * Slack: [@Scott Wegner|https://s.apache.org/beam-slack-channel]
> * Email: swegner at google dot com



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to