Reputation: 45712
I use:
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro-mapred</artifactId>
<version>1.7.4</version>
<classifier>hadoop2</classifier>
</dependency>
Question: How to attach sources to that classes?
Upvotes: 0
Views: 41
Reputation: 209072
you can add another dependency, with the sources
classifer
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro-mapred</artifactId>
<version>1.7.4</version>
<type>jar</type>
<classifier>sources</classifier>
</dependency>
See the repo. You can also get the javadoc.
Upvotes: 2