[ 
https://issues.apache.org/jira/browse/OOZIE-2864?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15964348#comment-15964348
 ] 

Hadoop QA commented on OOZIE-2864:
----------------------------------

Testing JIRA OOZIE-2864

Cleaning local git workspace

----------------------------

{color:green}+1 PATCH_APPLIES{color}
{color:green}+1 CLEAN{color}
{color:red}-1 RAW_PATCH_ANALYSIS{color}
.    {color:green}+1{color} the patch does not introduce any @author tags
.    {color:green}+1{color} the patch does not introduce any tabs
.    {color:green}+1{color} the patch does not introduce any trailing spaces
.    {color:green}+1{color} the patch does not introduce any line longer than 
132
.    {color:red}-1{color} the patch does not add/modify any testcase
{color:green}+1 RAT{color}
.    {color:green}+1{color} the patch does not seem to introduce new RAT 
warnings
{color:green}+1 JAVADOC{color}
.    {color:green}+1{color} the patch does not seem to introduce new Javadoc 
warnings
{color:red}-1 COMPILE{color}
.    {color:red}-1{color} HEAD does not compile
.    {color:green}+1{color} patch compiles
.    {color:red}-1{color} the patch seems to introduce 8 new javac warning(s)
{color:red}-1{color} There are [42] new bugs found below threshold in total 
that must be fixed.
. {color:green}+1{color} There are no new bugs found in [client].
. {color:green}+1{color} There are no new bugs found in [sharelib/hive].
. {color:green}+1{color} There are no new bugs found in [sharelib/sqoop].
. {color:green}+1{color} There are no new bugs found in [sharelib/spark].
. {color:green}+1{color} There are no new bugs found in [sharelib/streaming].
. {color:green}+1{color} There are no new bugs found in [sharelib/hive2].
. {color:green}+1{color} There are no new bugs found in [sharelib/oozie].
. {color:green}+1{color} There are no new bugs found in [sharelib/hcatalog].
. {color:green}+1{color} There are no new bugs found in [sharelib/pig].
. {color:green}+1{color} There are no new bugs found in [sharelib/distcp].
. {color:green}+1{color} There are no new bugs found in [docs].
. {color:orange}0{color} There are [1] new bugs found in [server] that would be 
nice to have fixed.
. You can find the FindBugs diff here: server/findbugs-new.html
. {color:green}+1{color} There are no new bugs found in [core].
. {color:green}+1{color} There are no new bugs found in 
[hadooplibs/hadoop-utils-2].
. {color:green}+1{color} There are no new bugs found in [examples].
. {color:red}-1{color} There are [42] new bugs found below threshold in [tools] 
that must be fixed, listing only the first [5] ones.
. You can find the FindBugs diff here (look for the red and orange ones): 
tools/findbugs-new.html
. The top [5] most important FindBugs errors are:
. At OozieDBCLI.java:[line 548]: Found reliance on default encoding in 
org.apache.oozie.tools.OozieDBCLI.convertClobToBlobInMysql(String, Connection): 
new java.io.FileWriter(String, boolean)
. At OozieDBCLI.java:[line 577]: Found reliance on default encoding in 
org.apache.oozie.tools.OozieDBCLI.convertClobToBlobInPostgres(String, 
Connection, String): new java.io.FileWriter(String, boolean)
. At OozieDBCLI.java:[line 983]: Found reliance on default encoding in 
org.apache.oozie.tools.OozieDBCLI.createOozieSysTable(String, boolean, String): 
new java.io.FileWriter(String, boolean)
. At OozieDBCLI.java:[line 759]: Found reliance on default encoding in 
org.apache.oozie.tools.OozieDBCLI.ddlTweaks(String, boolean): new 
java.io.FileWriter(String, boolean)
. At OozieDBCLI.java:[line 712]: Found reliance on default encoding in 
org.apache.oozie.tools.OozieDBCLI.ddlTweaksFor50(String, boolean, String): new 
java.io.FileWriter(String, boolean)
{color:green}+1 BACKWARDS_COMPATIBILITY{color}
.    {color:green}+1{color} the patch does not change any JPA 
Entity/Colum/Basic/Lob/Transient annotations
.    {color:green}+1{color} the patch does not modify JPA files
{color:red}-1 TESTS{color} - patch does not compile, cannot run testcases
{color:green}+1 DISTRO{color}
.    {color:green}+1{color} distro tarball builds with the patch 

----------------------------
{color:red}*-1 Overall result, please check the reported -1(s)*{color}


The full output of the test-patch run is available at

. https://builds.apache.org/job/oozie-trunk-precommit-build/3789/

> Maven artifacts for package com.codahale.metrics have inconsistent groupId
> --------------------------------------------------------------------------
>
>                 Key: OOZIE-2864
>                 URL: https://issues.apache.org/jira/browse/OOZIE-2864
>             Project: Oozie
>          Issue Type: Bug
>    Affects Versions: 4.3.0
>            Reporter: Andras Piros
>            Assignee: Andras Piros
>             Fix For: 5.0.0
>
>         Attachments: OOZIE-2864.001.patch
>
>
> Within {{pom.xml}} and {{core/pom.xml}} there are inconsistencies w/ 
> artifacts that contain classes for the package and subpackages of 
> {{com.codahale.metrics}}:
> {code:xml}
>             <dependency>
>                 <groupId>io.dropwizard.metrics</groupId>
>                 <artifactId>metrics-graphite</artifactId>
>                 <version>${dropwizard.metrics.version}</version>
>             </dependency>
>             <dependency>
>                 <groupId>io.dropwizard.metrics</groupId>
>                 <artifactId>metrics-ganglia</artifactId>
>                 <version>${dropwizard.metrics.version}</version>
>             </dependency>
>             <dependency>
>                 <groupId>io.dropwizard.metrics</groupId>
>                 <artifactId>metrics-core</artifactId>
>                 <version>${dropwizard.metrics.version}</version>
>             </dependency>
> {code}
> which is OK but
> {code:xml}
>             <dependency>
>                 <groupId>com.codahale.metrics</groupId>
>                 <artifactId>metrics-core</artifactId>
>                 <version>3.0.2</version>
>             </dependency>
>             <dependency>
>                 <groupId>com.codahale.metrics</groupId>
>                 <artifactId>metrics-jvm</artifactId>
>                 <version>3.0.2</version>
>             </dependency>
>             <dependency>
>                 <groupId>com.codahale.metrics</groupId>
>                 <artifactId>metrics-json</artifactId>
>                 <version>3.0.2</version>
>             </dependency>
> {code}
> which is inconsistent.
> Important is that we only have artifacts from {{io.dropwizard.metrics}} 
> {{groupId}}.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to