You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Nimesh (Created) (JIRA)" <ji...@apache.org> on 2012/01/18 20:06:41 UTC

[jira] [Created] (AVRO-998) The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside

The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside
---------------------------------------------------------------------------------------------------------------------

                 Key: AVRO-998
                 URL: https://issues.apache.org/jira/browse/AVRO-998
             Project: Avro
          Issue Type: Bug
          Components: java
    Affects Versions: 1.6.0
            Reporter: Nimesh


The Avro tools-jar isn't going to work in the class path of most projects, since it has all of the dependencies inside of it like SLF4J. I know that SLF4J works fine with warning in case of multiple warning but still is there any way to get to fix issue? 
I am using only one ReflectionToStringBuilder class from avro-tools.jar file. FYI

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (AVRO-998) The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside

Posted by "Scott Carey (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AVRO-998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13188793#comment-13188793 ] 

Scott Carey commented on AVRO-998:
----------------------------------

Avro builds two versions of the tools jar:

avro-tools-VERSION.jar   which contains all dependencies and is intended to be used by command line.
avro-tools-VERSION-nodeps.jar  which does not bundle dependencies.

http://repo1.maven.org/maven2/org/apache/avro/avro-tools/1.6.1/

The latter can be accessed with a 
'nodeps' classifier in maven:

{code:xml}
<dependency>
  <groupId>org.apache.avro</groupId>
  <artifactId>avro-tools</artifactId>
  <classifier>nodeps</classifier>
</dependency>
{code}


                
> The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: AVRO-998
>                 URL: https://issues.apache.org/jira/browse/AVRO-998
>             Project: Avro
>          Issue Type: Bug
>          Components: java
>    Affects Versions: 1.6.0
>            Reporter: Nimesh
>
> The Avro tools-jar isn't going to work in the class path of most projects, since it has all of the dependencies inside of it like SLF4J. I know that SLF4J works fine with warning in case of multiple warning but still is there any way to get to fix issue? 
> I am using only one ReflectionToStringBuilder class from avro-tools.jar file. FYI

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (AVRO-998) The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside

Posted by "Nimesh (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AVRO-998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13188673#comment-13188673 ] 

Nimesh commented on AVRO-998:
-----------------------------

So I need only one class from avro-tools because other dependencies added in tools jar are already there in my project dependencies like SLF4J & javax.servlet.
In summary, I need avro-tools jar with Reflection feature.
                
> The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: AVRO-998
>                 URL: https://issues.apache.org/jira/browse/AVRO-998
>             Project: Avro
>          Issue Type: Bug
>          Components: java
>    Affects Versions: 1.6.0
>            Reporter: Nimesh
>
> The Avro tools-jar isn't going to work in the class path of most projects, since it has all of the dependencies inside of it like SLF4J. I know that SLF4J works fine with warning in case of multiple warning but still is there any way to get to fix issue? 
> I am using only one ReflectionToStringBuilder class from avro-tools.jar file. FYI

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (AVRO-998) The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside

Posted by "Nimesh (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AVRO-998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13189209#comment-13189209 ] 

Nimesh commented on AVRO-998:
-----------------------------

Thanks, Scott!
                
> The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: AVRO-998
>                 URL: https://issues.apache.org/jira/browse/AVRO-998
>             Project: Avro
>          Issue Type: Bug
>          Components: java
>    Affects Versions: 1.6.0
>            Reporter: Nimesh
>
> The Avro tools-jar isn't going to work in the class path of most projects, since it has all of the dependencies inside of it like SLF4J. I know that SLF4J works fine with warning in case of multiple warning but still is there any way to get to fix issue? 
> I am using only one ReflectionToStringBuilder class from avro-tools.jar file. FYI

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (AVRO-998) The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside

Posted by "Scott Carey (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AVRO-998?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Scott Carey resolved AVRO-998.
------------------------------

    Resolution: Not A Problem

avro-tools jar with 'nodeps' classifier meets this requirement.
                
> The Avro tools-jar isn't going to work in the classpath of most projects, since it has all of the dependencies inside
> ---------------------------------------------------------------------------------------------------------------------
>
>                 Key: AVRO-998
>                 URL: https://issues.apache.org/jira/browse/AVRO-998
>             Project: Avro
>          Issue Type: Bug
>          Components: java
>    Affects Versions: 1.6.0
>            Reporter: Nimesh
>
> The Avro tools-jar isn't going to work in the class path of most projects, since it has all of the dependencies inside of it like SLF4J. I know that SLF4J works fine with warning in case of multiple warning but still is there any way to get to fix issue? 
> I am using only one ReflectionToStringBuilder class from avro-tools.jar file. FYI

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira