Hey, Dylan,
I don't think there's a really good way to achieve this because
iterator-test-harness is not yet a released artifact. But if I were you
(and I weren't too worried about sharing the code with a large group) I
think I would build + publish the Accumulo 1.8 artifacts to a local MVN
repository ("mvn install" I think will do the trick?) and then you can just
reference them in your local build file, ie.
<dependency>
<groupId>org.apache.accumulo</groupId>
<artifactId>accumulo-iterator-test-harness</artifactId>
<version>1.8.0</version>
</dependency>
-Russ
On Tue, Jun 21, 2016 at 1:55 PM Dylan Hutchison <[email protected]>
wrote:
> Hi all,
>
> I like the structure of Accumulo's iterator-test-harness
> <https://github.com/apache/accumulo/tree/master/iterator-test-harness>
> module and would like to use it in my own code. I was wondering if there
> is a better alternative than (1) copying the code, (2) modifying it to suit
> my own needs, (3) pushing back improvements I make if any, by
> re-implementing them in the Accumulo project and filing a JIRA.
>
> Cheers, Dylan
>