If I have a file that is in
package com.my.stuff.tests.stuffone;
Is there anyway to make a pom dependency apply to that one package only and not to the other
<dependency>
<groupId>org.some.library</groupId>
<artifactId>some-artifact</artifactId>
<version>1</version>
// apply to com.my.stuff.tests.stuffone;
</dependency>
<dependency>
<groupId>org.some.library</groupId>
<artifactId>some-artifact</artifactId>
<version>2</version>
// apply to all other package
</dependency>